Models
Types

Models

Principal

Description: AuthJS

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
username String
  • @unique
Yes -
firstName String?
  • -
No NID0
lastName String
  • -
Yes NID0
password String?
  • -
No -
phoneCode Int?
  • @default(977)
No -
phoneNumber String?
  • -
No -
streetName String?
  • -
No -
city String?
  • -
No -
areaCode String?
  • -
No -
country Country
  • @default(Nepal)
Yes -
email String?
  • @unique
No NID1
emailVerified DateTime?
  • -
No -
payerType DiscountType
  • @default(FirstTimer)
Yes -
image String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
createdBy String?
  • -
No -
creator Principal?
  • -
No -
updatedBy String?
  • -
No -
updater Principal?
  • -
No -
createdPrincipals Principal[]
  • -
Yes -
updatedPrincipals Principal[]
  • -
Yes -
createdPayments Payment[]
  • -
Yes -
updatedPayments Payment[]
  • -
Yes -
createdAppointments Appointment[]
  • -
Yes -
updatedAppointments Appointment[]
  • -
Yes -
createdEquipments Equipment[]
  • -
Yes -
updatedEquipments Equipment[]
  • -
Yes -
createdPatients Patient[]
  • -
Yes -
updatedPatients Patient[]
  • -
Yes -
createdServices Service[]
  • -
Yes -
updatedServices Service[]
  • -
Yes -
accounts Account[]
  • -
Yes -
authenticator Authenticator[]
  • -
Yes -
receivedPaymentList Payment[]
  • -
Yes -
sessions Session[]
  • -
Yes -

Operations

findUnique

Find zero or one Principal

// Get one Principal
const principal = await prisma.principal.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PrincipalWhereUniqueInput Yes

Output

Type: Principal
Required: No
List: No

findFirst

Find first Principal

// Get one Principal
const principal = await prisma.principal.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PrincipalWhereInput No
orderBy PrincipalOrderByWithRelationInput[] | PrincipalOrderByWithRelationInput No
cursor PrincipalWhereUniqueInput No
take Int No
skip Int No
distinct PrincipalScalarFieldEnum | PrincipalScalarFieldEnum[] No

Output

Type: Principal
Required: No
List: No

findMany

Find zero or more Principal

// Get all Principal
const Principal = await prisma.principal.findMany()
// Get first 10 Principal
const Principal = await prisma.principal.findMany({ take: 10 })

Input

Name Type Required
where PrincipalWhereInput No
orderBy PrincipalOrderByWithRelationInput[] | PrincipalOrderByWithRelationInput No
cursor PrincipalWhereUniqueInput No
take Int No
skip Int No
distinct PrincipalScalarFieldEnum | PrincipalScalarFieldEnum[] No

Output

Type: Principal
Required: Yes
List: Yes

create

Create one Principal

// Create one Principal
const Principal = await prisma.principal.create({
  data: {
    // ... data to create a Principal
  }
})

Input

Name Type Required
data PrincipalCreateInput | PrincipalUncheckedCreateInput Yes

Output

Type: Principal
Required: Yes
List: No

delete

Delete one Principal

// Delete one Principal
const Principal = await prisma.principal.delete({
  where: {
    // ... filter to delete one Principal
  }
})

Input

Name Type Required
where PrincipalWhereUniqueInput Yes

Output

Type: Principal
Required: No
List: No

update

Update one Principal

// Update one Principal
const principal = await prisma.principal.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PrincipalUpdateInput | PrincipalUncheckedUpdateInput Yes
where PrincipalWhereUniqueInput Yes

Output

Type: Principal
Required: No
List: No

deleteMany

Delete zero or more Principal

// Delete a few Principal
const { count } = await prisma.principal.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PrincipalWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Principal

const { count } = await prisma.principal.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PrincipalUpdateManyMutationInput | PrincipalUncheckedUpdateManyInput Yes
where PrincipalWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Principal

// Update or create a Principal
const principal = await prisma.principal.upsert({
  create: {
    // ... data to create a Principal
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Principal we want to update
  }
})

Input

Name Type Required
where PrincipalWhereUniqueInput Yes
create PrincipalCreateInput | PrincipalUncheckedCreateInput Yes
update PrincipalUpdateInput | PrincipalUncheckedUpdateInput Yes

Output

Type: Principal
Required: Yes
List: No

Account

Name Value
@@id
  • provider
  • providerAccountId

Fields

Name Type Attributes Required Comment
userId String
  • -
Yes -
type String
  • -
Yes -
provider String
  • -
Yes -
providerAccountId String
  • -
Yes -
refresh_token String?
  • -
No -
access_token String?
  • -
No -
expires_at Int?
  • -
No -
token_type String?
  • -
No -
scope String?
  • -
No -
id_token String?
  • -
No -
session_state String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
user Principal
  • -
Yes -

Operations

findUnique

Find zero or one Account

// Get one Account
const account = await prisma.account.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

findFirst

Find first Account

// Get one Account
const account = await prisma.account.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: No
List: No

findMany

Find zero or more Account

// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: Yes
List: Yes

create

Create one Account

// Create one Account
const Account = await prisma.account.create({
  data: {
    // ... data to create a Account
  }
})

Input

Name Type Required
data AccountCreateInput | AccountUncheckedCreateInput Yes

Output

Type: Account
Required: Yes
List: No

delete

Delete one Account

// Delete one Account
const Account = await prisma.account.delete({
  where: {
    // ... filter to delete one Account
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

update

Update one Account

// Update one Account
const account = await prisma.account.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateInput | AccountUncheckedUpdateInput Yes
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

deleteMany

Delete zero or more Account

// Delete a few Account
const { count } = await prisma.account.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Account

const { count } = await prisma.account.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput Yes
where AccountWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Account

// Update or create a Account
const account = await prisma.account.upsert({
  create: {
    // ... data to create a Account
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Account we want to update
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes
create AccountCreateInput | AccountUncheckedCreateInput Yes
update AccountUpdateInput | AccountUncheckedUpdateInput Yes

Output

Type: Account
Required: Yes
List: No

Session

Fields

Name Type Attributes Required Comment
sessionToken String
  • @unique
Yes -
userId String
  • -
Yes -
expiresAt DateTime
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
user Principal
  • -
Yes -

Operations

findUnique

Find zero or one Session

// Get one Session
const session = await prisma.session.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

findFirst

Find first Session

// Get one Session
const session = await prisma.session.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: No
List: No

findMany

Find zero or more Session

// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: Yes
List: Yes

create

Create one Session

// Create one Session
const Session = await prisma.session.create({
  data: {
    // ... data to create a Session
  }
})

Input

Name Type Required
data SessionCreateInput | SessionUncheckedCreateInput Yes

Output

Type: Session
Required: Yes
List: No

delete

Delete one Session

// Delete one Session
const Session = await prisma.session.delete({
  where: {
    // ... filter to delete one Session
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

update

Update one Session

// Update one Session
const session = await prisma.session.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateInput | SessionUncheckedUpdateInput Yes
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

deleteMany

Delete zero or more Session

// Delete a few Session
const { count } = await prisma.session.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Session

const { count } = await prisma.session.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput Yes
where SessionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Session

// Update or create a Session
const session = await prisma.session.upsert({
  create: {
    // ... data to create a Session
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Session we want to update
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes
create SessionCreateInput | SessionUncheckedCreateInput Yes
update SessionUpdateInput | SessionUncheckedUpdateInput Yes

Output

Type: Session
Required: Yes
List: No

VerificationToken

Name Value
@@id
  • identifier
  • token

Fields

Name Type Attributes Required Comment
identifier String
  • -
Yes -
token String
  • -
Yes -
expires DateTime
  • -
Yes -

Operations

findUnique

Find zero or one VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more VerificationToken

// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one VerificationToken

// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
  data: {
    // ... data to create a VerificationToken
  }
})

Input

Name Type Required
data VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one VerificationToken

// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
  where: {
    // ... filter to delete one VerificationToken
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one VerificationToken

// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more VerificationToken

// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one VerificationToken

const { count } = await prisma.verificationToken.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput Yes
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one VerificationToken

// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
  create: {
    // ... data to create a VerificationToken
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the VerificationToken we want to update
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes
create VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes
update VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Authenticator

Name Value
@@id
  • userId
  • credentialID

Fields

Name Type Attributes Required Comment
credentialID String
  • @unique
Yes -
userId String
  • -
Yes -
providerAccountId String
  • -
Yes -
credentialPublicKey String
  • -
Yes -
counter Int
  • -
Yes -
credentialDeviceType String
  • -
Yes -
credentialBackedUp Boolean
  • -
Yes -
transports String?
  • -
No -
user Principal
  • -
Yes -

Operations

findUnique

Find zero or one Authenticator

// Get one Authenticator
const authenticator = await prisma.authenticator.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AuthenticatorWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Authenticator

// Get one Authenticator
const authenticator = await prisma.authenticator.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AuthenticatorWhereInput No
orderBy AuthenticatorOrderByWithRelationInput[] | AuthenticatorOrderByWithRelationInput No
cursor AuthenticatorWhereUniqueInput No
take Int No
skip Int No
distinct AuthenticatorScalarFieldEnum | AuthenticatorScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Authenticator

// Get all Authenticator
const Authenticator = await prisma.authenticator.findMany()
// Get first 10 Authenticator
const Authenticator = await prisma.authenticator.findMany({ take: 10 })

Input

Name Type Required
where AuthenticatorWhereInput No
orderBy AuthenticatorOrderByWithRelationInput[] | AuthenticatorOrderByWithRelationInput No
cursor AuthenticatorWhereUniqueInput No
take Int No
skip Int No
distinct AuthenticatorScalarFieldEnum | AuthenticatorScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Authenticator

// Create one Authenticator
const Authenticator = await prisma.authenticator.create({
  data: {
    // ... data to create a Authenticator
  }
})

Input

Name Type Required
data AuthenticatorCreateInput | AuthenticatorUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Authenticator

// Delete one Authenticator
const Authenticator = await prisma.authenticator.delete({
  where: {
    // ... filter to delete one Authenticator
  }
})

Input

Name Type Required
where AuthenticatorWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Authenticator

// Update one Authenticator
const authenticator = await prisma.authenticator.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AuthenticatorUpdateInput | AuthenticatorUncheckedUpdateInput Yes
where AuthenticatorWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Authenticator

// Delete a few Authenticator
const { count } = await prisma.authenticator.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AuthenticatorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Authenticator

const { count } = await prisma.authenticator.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AuthenticatorUpdateManyMutationInput | AuthenticatorUncheckedUpdateManyInput Yes
where AuthenticatorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Authenticator

// Update or create a Authenticator
const authenticator = await prisma.authenticator.upsert({
  create: {
    // ... data to create a Authenticator
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Authenticator we want to update
  }
})

Input

Name Type Required
where AuthenticatorWhereUniqueInput Yes
create AuthenticatorCreateInput | AuthenticatorUncheckedCreateInput Yes
update AuthenticatorUpdateInput | AuthenticatorUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Payment

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
payerId String
  • -
Yes -
receiverId String
  • -
Yes -
paymentMethod PaymentMethod
  • @default(CashAtCounter)
Yes -
totalPayableAmount Int
  • -
Yes -
discountApplied Int
  • @default(0)
Yes -
paidAmount Int
  • -
Yes -
reasonForVisit String
  • -
Yes -
payer Patient
  • -
Yes -
receiver Principal
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
createdBy String?
  • -
No -
creator Principal?
  • -
No -
updatedBy String?
  • -
No -
updater Principal?
  • -
No -

Operations

findUnique

Find zero or one Payment

// Get one Payment
const payment = await prisma.payment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PaymentWhereUniqueInput Yes

Output

Type: Payment
Required: No
List: No

findFirst

Find first Payment

// Get one Payment
const payment = await prisma.payment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PaymentWhereInput No
orderBy PaymentOrderByWithRelationInput[] | PaymentOrderByWithRelationInput No
cursor PaymentWhereUniqueInput No
take Int No
skip Int No
distinct PaymentScalarFieldEnum | PaymentScalarFieldEnum[] No

Output

Type: Payment
Required: No
List: No

findMany

Find zero or more Payment

// Get all Payment
const Payment = await prisma.payment.findMany()
// Get first 10 Payment
const Payment = await prisma.payment.findMany({ take: 10 })

Input

Name Type Required
where PaymentWhereInput No
orderBy PaymentOrderByWithRelationInput[] | PaymentOrderByWithRelationInput No
cursor PaymentWhereUniqueInput No
take Int No
skip Int No
distinct PaymentScalarFieldEnum | PaymentScalarFieldEnum[] No

Output

Type: Payment
Required: Yes
List: Yes

create

Create one Payment

// Create one Payment
const Payment = await prisma.payment.create({
  data: {
    // ... data to create a Payment
  }
})

Input

Name Type Required
data PaymentCreateInput | PaymentUncheckedCreateInput Yes

Output

Type: Payment
Required: Yes
List: No

delete

Delete one Payment

// Delete one Payment
const Payment = await prisma.payment.delete({
  where: {
    // ... filter to delete one Payment
  }
})

Input

Name Type Required
where PaymentWhereUniqueInput Yes

Output

Type: Payment
Required: No
List: No

update

Update one Payment

// Update one Payment
const payment = await prisma.payment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PaymentUpdateInput | PaymentUncheckedUpdateInput Yes
where PaymentWhereUniqueInput Yes

Output

Type: Payment
Required: No
List: No

deleteMany

Delete zero or more Payment

// Delete a few Payment
const { count } = await prisma.payment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PaymentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Payment

const { count } = await prisma.payment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyInput Yes
where PaymentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Payment

// Update or create a Payment
const payment = await prisma.payment.upsert({
  create: {
    // ... data to create a Payment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Payment we want to update
  }
})

Input

Name Type Required
where PaymentWhereUniqueInput Yes
create PaymentCreateInput | PaymentUncheckedCreateInput Yes
update PaymentUpdateInput | PaymentUncheckedUpdateInput Yes

Output

Type: Payment
Required: Yes
List: No

Appointment

Name Value
@@unique
  • patientId
  • locationId
  • providerId
@@index
  • patientId
  • locationId
  • providerId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
  • @default(dbgenerated(gen_random_uuid()))
Yes -
date DateTime
  • -
Yes -
startTime TimeOfDay?
  • -
No -
endTime TimeOfDay?
  • -
No -
voided Boolean?
  • @default(false)
No -
voidedBy String?
  • -
No -
dateVoided DateTime?
  • -
No -
voidReason String?
  • -
No -
appointmentTypeId String?
  • -
No -
patientId String
  • -
Yes -
locationId String?
  • -
No -
providerId String?
  • -
No -
appointmentType AppointmentType?
  • -
No ::inline
location Location?
  • -
No -
patient Patient
  • -
Yes -
provider Provider?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
createdBy String?
  • -
No -
creator Principal?
  • -
No -
updatedBy String?
  • -
No -
updater Principal?
  • -
No -

Operations

findUnique

Find zero or one Appointment

// Get one Appointment
const appointment = await prisma.appointment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AppointmentWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Appointment

// Get one Appointment
const appointment = await prisma.appointment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AppointmentWhereInput No
orderBy AppointmentOrderByWithRelationInput[] | AppointmentOrderByWithRelationInput No
cursor AppointmentWhereUniqueInput No
take Int No
skip Int No
distinct AppointmentScalarFieldEnum | AppointmentScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Appointment

// Get all Appointment
const Appointment = await prisma.appointment.findMany()
// Get first 10 Appointment
const Appointment = await prisma.appointment.findMany({ take: 10 })

Input

Name Type Required
where AppointmentWhereInput No
orderBy AppointmentOrderByWithRelationInput[] | AppointmentOrderByWithRelationInput No
cursor AppointmentWhereUniqueInput No
take Int No
skip Int No
distinct AppointmentScalarFieldEnum | AppointmentScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Appointment

// Create one Appointment
const Appointment = await prisma.appointment.create({
  data: {
    // ... data to create a Appointment
  }
})

Input

Name Type Required
data AppointmentCreateInput | AppointmentUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Appointment

// Delete one Appointment
const Appointment = await prisma.appointment.delete({
  where: {
    // ... filter to delete one Appointment
  }
})

Input

Name Type Required
where AppointmentWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Appointment

// Update one Appointment
const appointment = await prisma.appointment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AppointmentUpdateInput | AppointmentUncheckedUpdateInput Yes
where AppointmentWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Appointment

// Delete a few Appointment
const { count } = await prisma.appointment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AppointmentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Appointment

const { count } = await prisma.appointment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyInput Yes
where AppointmentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Appointment

// Update or create a Appointment
const appointment = await prisma.appointment.upsert({
  create: {
    // ... data to create a Appointment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Appointment we want to update
  }
})

Input

Name Type Required
where AppointmentWhereUniqueInput Yes
create AppointmentCreateInput | AppointmentUncheckedCreateInput Yes
update AppointmentUpdateInput | AppointmentUncheckedUpdateInput Yes

Output

Required: Yes
List: No

AppointmentType

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
duration Int
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
appointmentList Appointment[]
  • -
Yes -

Operations

findUnique

Find zero or one AppointmentType

// Get one AppointmentType
const appointmentType = await prisma.appointmentType.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AppointmentTypeWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first AppointmentType

// Get one AppointmentType
const appointmentType = await prisma.appointmentType.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AppointmentTypeWhereInput No
orderBy AppointmentTypeOrderByWithRelationInput[] | AppointmentTypeOrderByWithRelationInput No
cursor AppointmentTypeWhereUniqueInput No
take Int No
skip Int No
distinct AppointmentTypeScalarFieldEnum | AppointmentTypeScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more AppointmentType

// Get all AppointmentType
const AppointmentType = await prisma.appointmentType.findMany()
// Get first 10 AppointmentType
const AppointmentType = await prisma.appointmentType.findMany({ take: 10 })

Input

Name Type Required
where AppointmentTypeWhereInput No
orderBy AppointmentTypeOrderByWithRelationInput[] | AppointmentTypeOrderByWithRelationInput No
cursor AppointmentTypeWhereUniqueInput No
take Int No
skip Int No
distinct AppointmentTypeScalarFieldEnum | AppointmentTypeScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one AppointmentType

// Create one AppointmentType
const AppointmentType = await prisma.appointmentType.create({
  data: {
    // ... data to create a AppointmentType
  }
})

Input

Name Type Required
data AppointmentTypeCreateInput | AppointmentTypeUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one AppointmentType

// Delete one AppointmentType
const AppointmentType = await prisma.appointmentType.delete({
  where: {
    // ... filter to delete one AppointmentType
  }
})

Input

Name Type Required
where AppointmentTypeWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one AppointmentType

// Update one AppointmentType
const appointmentType = await prisma.appointmentType.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AppointmentTypeUpdateInput | AppointmentTypeUncheckedUpdateInput Yes
where AppointmentTypeWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more AppointmentType

// Delete a few AppointmentType
const { count } = await prisma.appointmentType.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AppointmentTypeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one AppointmentType

const { count } = await prisma.appointmentType.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AppointmentTypeUpdateManyMutationInput | AppointmentTypeUncheckedUpdateManyInput Yes
where AppointmentTypeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one AppointmentType

// Update or create a AppointmentType
const appointmentType = await prisma.appointmentType.upsert({
  create: {
    // ... data to create a AppointmentType
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the AppointmentType we want to update
  }
})

Input

Name Type Required
where AppointmentTypeWhereUniqueInput Yes
create AppointmentTypeCreateInput | AppointmentTypeUncheckedCreateInput Yes
update AppointmentTypeUpdateInput | AppointmentTypeUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Location

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
address1 String
  • -
Yes -
address2 String
  • -
Yes -
city String
  • -
Yes -
stateProvince String
  • -
Yes -
country String
  • -
Yes -
postalCode String
  • -
Yes -
latitude Float
  • -
Yes -
longitude Float
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
appointmentList Appointment[]
  • -
Yes -
encounterList Encounter[]
  • -
Yes -

Operations

findUnique

Find zero or one Location

// Get one Location
const location = await prisma.location.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LocationWhereUniqueInput Yes

Output

Type: Location
Required: No
List: No

findFirst

Find first Location

// Get one Location
const location = await prisma.location.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LocationWhereInput No
orderBy LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput No
cursor LocationWhereUniqueInput No
take Int No
skip Int No
distinct LocationScalarFieldEnum | LocationScalarFieldEnum[] No

Output

Type: Location
Required: No
List: No

findMany

Find zero or more Location

// Get all Location
const Location = await prisma.location.findMany()
// Get first 10 Location
const Location = await prisma.location.findMany({ take: 10 })

Input

Name Type Required
where LocationWhereInput No
orderBy LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput No
cursor LocationWhereUniqueInput No
take Int No
skip Int No
distinct LocationScalarFieldEnum | LocationScalarFieldEnum[] No

Output

Type: Location
Required: Yes
List: Yes

create

Create one Location

// Create one Location
const Location = await prisma.location.create({
  data: {
    // ... data to create a Location
  }
})

Input

Name Type Required
data LocationCreateInput | LocationUncheckedCreateInput Yes

Output

Type: Location
Required: Yes
List: No

delete

Delete one Location

// Delete one Location
const Location = await prisma.location.delete({
  where: {
    // ... filter to delete one Location
  }
})

Input

Name Type Required
where LocationWhereUniqueInput Yes

Output

Type: Location
Required: No
List: No

update

Update one Location

// Update one Location
const location = await prisma.location.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LocationUpdateInput | LocationUncheckedUpdateInput Yes
where LocationWhereUniqueInput Yes

Output

Type: Location
Required: No
List: No

deleteMany

Delete zero or more Location

// Delete a few Location
const { count } = await prisma.location.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LocationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Location

const { count } = await prisma.location.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LocationUpdateManyMutationInput | LocationUncheckedUpdateManyInput Yes
where LocationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Location

// Update or create a Location
const location = await prisma.location.upsert({
  create: {
    // ... data to create a Location
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Location we want to update
  }
})

Input

Name Type Required
where LocationWhereUniqueInput Yes
create LocationCreateInput | LocationUncheckedCreateInput Yes
update LocationUpdateInput | LocationUncheckedUpdateInput Yes

Output

Type: Location
Required: Yes
List: No

Patient

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
  • @default(dbgenerated(gen_random_uuid()))
Yes -
givenName String
  • -
Yes NID0
middleName String
  • -
Yes -
familyName String
  • -
Yes NID0
gender Gender
  • -
Yes -
birthdate DateTime?
  • -
No -
phoneCode Int?
  • @default(977)
No NID1
phoneNumber String?
  • -
No NID1
image String?
  • -
No -
streetName String?
  • -
No -
city String?
  • -
No -
areaCode String?
  • -
No -
country Country
  • @default(Nepal)
Yes -
email String?
  • @unique
No -
emailVerified DateTime?
  • -
No -
paymentList Payment[]
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
createdBy String?
  • -
No -
creator Principal?
  • -
No -
updatedBy String?
  • -
No -
updater Principal?
  • -
No -
appointmentList Appointment[]
  • -
Yes -
encounterList Encounter[]
  • -
Yes -

Operations

findUnique

Find zero or one Patient

// Get one Patient
const patient = await prisma.patient.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PatientWhereUniqueInput Yes

Output

Type: Patient
Required: No
List: No

findFirst

Find first Patient

// Get one Patient
const patient = await prisma.patient.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PatientWhereInput No
orderBy PatientOrderByWithRelationInput[] | PatientOrderByWithRelationInput No
cursor PatientWhereUniqueInput No
take Int No
skip Int No
distinct PatientScalarFieldEnum | PatientScalarFieldEnum[] No

Output

Type: Patient
Required: No
List: No

findMany

Find zero or more Patient

// Get all Patient
const Patient = await prisma.patient.findMany()
// Get first 10 Patient
const Patient = await prisma.patient.findMany({ take: 10 })

Input

Name Type Required
where PatientWhereInput No
orderBy PatientOrderByWithRelationInput[] | PatientOrderByWithRelationInput No
cursor PatientWhereUniqueInput No
take Int No
skip Int No
distinct PatientScalarFieldEnum | PatientScalarFieldEnum[] No

Output

Type: Patient
Required: Yes
List: Yes

create

Create one Patient

// Create one Patient
const Patient = await prisma.patient.create({
  data: {
    // ... data to create a Patient
  }
})

Input

Name Type Required
data PatientCreateInput | PatientUncheckedCreateInput Yes

Output

Type: Patient
Required: Yes
List: No

delete

Delete one Patient

// Delete one Patient
const Patient = await prisma.patient.delete({
  where: {
    // ... filter to delete one Patient
  }
})

Input

Name Type Required
where PatientWhereUniqueInput Yes

Output

Type: Patient
Required: No
List: No

update

Update one Patient

// Update one Patient
const patient = await prisma.patient.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PatientUpdateInput | PatientUncheckedUpdateInput Yes
where PatientWhereUniqueInput Yes

Output

Type: Patient
Required: No
List: No

deleteMany

Delete zero or more Patient

// Delete a few Patient
const { count } = await prisma.patient.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PatientWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Patient

const { count } = await prisma.patient.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PatientUpdateManyMutationInput | PatientUncheckedUpdateManyInput Yes
where PatientWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Patient

// Update or create a Patient
const patient = await prisma.patient.upsert({
  create: {
    // ... data to create a Patient
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Patient we want to update
  }
})

Input

Name Type Required
where PatientWhereUniqueInput Yes
create PatientCreateInput | PatientUncheckedCreateInput Yes
update PatientUpdateInput | PatientUncheckedUpdateInput Yes

Output

Type: Patient
Required: Yes
List: No

Equipment

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
name String
  • -
Yes -
price Int
  • -
Yes -
count Int
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
createdBy String?
  • -
No -
creator Principal?
  • -
No -
updatedBy String?
  • -
No -
updater Principal?
  • -
No -

Operations

findUnique

Find zero or one Equipment

// Get one Equipment
const equipment = await prisma.equipment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EquipmentWhereUniqueInput Yes

Output

Type: Equipment
Required: No
List: No

findFirst

Find first Equipment

// Get one Equipment
const equipment = await prisma.equipment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EquipmentWhereInput No
orderBy EquipmentOrderByWithRelationInput[] | EquipmentOrderByWithRelationInput No
cursor EquipmentWhereUniqueInput No
take Int No
skip Int No
distinct EquipmentScalarFieldEnum | EquipmentScalarFieldEnum[] No

Output

Type: Equipment
Required: No
List: No

findMany

Find zero or more Equipment

// Get all Equipment
const Equipment = await prisma.equipment.findMany()
// Get first 10 Equipment
const Equipment = await prisma.equipment.findMany({ take: 10 })

Input

Name Type Required
where EquipmentWhereInput No
orderBy EquipmentOrderByWithRelationInput[] | EquipmentOrderByWithRelationInput No
cursor EquipmentWhereUniqueInput No
take Int No
skip Int No
distinct EquipmentScalarFieldEnum | EquipmentScalarFieldEnum[] No

Output

Type: Equipment
Required: Yes
List: Yes

create

Create one Equipment

// Create one Equipment
const Equipment = await prisma.equipment.create({
  data: {
    // ... data to create a Equipment
  }
})

Input

Name Type Required
data EquipmentCreateInput | EquipmentUncheckedCreateInput Yes

Output

Type: Equipment
Required: Yes
List: No

delete

Delete one Equipment

// Delete one Equipment
const Equipment = await prisma.equipment.delete({
  where: {
    // ... filter to delete one Equipment
  }
})

Input

Name Type Required
where EquipmentWhereUniqueInput Yes

Output

Type: Equipment
Required: No
List: No

update

Update one Equipment

// Update one Equipment
const equipment = await prisma.equipment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EquipmentUpdateInput | EquipmentUncheckedUpdateInput Yes
where EquipmentWhereUniqueInput Yes

Output

Type: Equipment
Required: No
List: No

deleteMany

Delete zero or more Equipment

// Delete a few Equipment
const { count } = await prisma.equipment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EquipmentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Equipment

const { count } = await prisma.equipment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EquipmentUpdateManyMutationInput | EquipmentUncheckedUpdateManyInput Yes
where EquipmentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Equipment

// Update or create a Equipment
const equipment = await prisma.equipment.upsert({
  create: {
    // ... data to create a Equipment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Equipment we want to update
  }
})

Input

Name Type Required
where EquipmentWhereUniqueInput Yes
create EquipmentCreateInput | EquipmentUncheckedCreateInput Yes
update EquipmentUpdateInput | EquipmentUncheckedUpdateInput Yes

Output

Type: Equipment
Required: Yes
List: No

Service

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
price Int
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
createdBy String?
  • -
No -
creator Principal?
  • -
No -
updatedBy String?
  • -
No -
updater Principal?
  • -
No -

Operations

findUnique

Find zero or one Service

// Get one Service
const service = await prisma.service.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ServiceWhereUniqueInput Yes

Output

Type: Service
Required: No
List: No

findFirst

Find first Service

// Get one Service
const service = await prisma.service.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ServiceWhereInput No
orderBy ServiceOrderByWithRelationInput[] | ServiceOrderByWithRelationInput No
cursor ServiceWhereUniqueInput No
take Int No
skip Int No
distinct ServiceScalarFieldEnum | ServiceScalarFieldEnum[] No

Output

Type: Service
Required: No
List: No

findMany

Find zero or more Service

// Get all Service
const Service = await prisma.service.findMany()
// Get first 10 Service
const Service = await prisma.service.findMany({ take: 10 })

Input

Name Type Required
where ServiceWhereInput No
orderBy ServiceOrderByWithRelationInput[] | ServiceOrderByWithRelationInput No
cursor ServiceWhereUniqueInput No
take Int No
skip Int No
distinct ServiceScalarFieldEnum | ServiceScalarFieldEnum[] No

Output

Type: Service
Required: Yes
List: Yes

create

Create one Service

// Create one Service
const Service = await prisma.service.create({
  data: {
    // ... data to create a Service
  }
})

Input

Name Type Required
data ServiceCreateInput | ServiceUncheckedCreateInput Yes

Output

Type: Service
Required: Yes
List: No

delete

Delete one Service

// Delete one Service
const Service = await prisma.service.delete({
  where: {
    // ... filter to delete one Service
  }
})

Input

Name Type Required
where ServiceWhereUniqueInput Yes

Output

Type: Service
Required: No
List: No

update

Update one Service

// Update one Service
const service = await prisma.service.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ServiceUpdateInput | ServiceUncheckedUpdateInput Yes
where ServiceWhereUniqueInput Yes

Output

Type: Service
Required: No
List: No

deleteMany

Delete zero or more Service

// Delete a few Service
const { count } = await prisma.service.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ServiceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Service

const { count } = await prisma.service.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ServiceUpdateManyMutationInput | ServiceUncheckedUpdateManyInput Yes
where ServiceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Service

// Update or create a Service
const service = await prisma.service.upsert({
  create: {
    // ... data to create a Service
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Service we want to update
  }
})

Input

Name Type Required
where ServiceWhereUniqueInput Yes
create ServiceCreateInput | ServiceUncheckedCreateInput Yes
update ServiceUpdateInput | ServiceUncheckedUpdateInput Yes

Output

Type: Service
Required: Yes
List: No

Provider

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
identifier String
  • -
Yes -
description String
  • -
Yes -
voided Boolean
  • @default(false)
Yes -
voidedBy String
  • -
Yes -
dateVoided DateTime
  • -
Yes -
voidReason String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
appointmentList Appointment[]
  • -
Yes -
encounterList Encounter[]
  • -
Yes -

Operations

findUnique

Find zero or one Provider

// Get one Provider
const provider = await prisma.provider.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ProviderWhereUniqueInput Yes

Output

Type: Provider
Required: No
List: No

findFirst

Find first Provider

// Get one Provider
const provider = await prisma.provider.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ProviderWhereInput No
orderBy ProviderOrderByWithRelationInput[] | ProviderOrderByWithRelationInput No
cursor ProviderWhereUniqueInput No
take Int No
skip Int No
distinct ProviderScalarFieldEnum | ProviderScalarFieldEnum[] No

Output

Type: Provider
Required: No
List: No

findMany

Find zero or more Provider

// Get all Provider
const Provider = await prisma.provider.findMany()
// Get first 10 Provider
const Provider = await prisma.provider.findMany({ take: 10 })

Input

Name Type Required
where ProviderWhereInput No
orderBy ProviderOrderByWithRelationInput[] | ProviderOrderByWithRelationInput No
cursor ProviderWhereUniqueInput No
take Int No
skip Int No
distinct ProviderScalarFieldEnum | ProviderScalarFieldEnum[] No

Output

Type: Provider
Required: Yes
List: Yes

create

Create one Provider

// Create one Provider
const Provider = await prisma.provider.create({
  data: {
    // ... data to create a Provider
  }
})

Input

Name Type Required
data ProviderCreateInput | ProviderUncheckedCreateInput Yes

Output

Type: Provider
Required: Yes
List: No

delete

Delete one Provider

// Delete one Provider
const Provider = await prisma.provider.delete({
  where: {
    // ... filter to delete one Provider
  }
})

Input

Name Type Required
where ProviderWhereUniqueInput Yes

Output

Type: Provider
Required: No
List: No

update

Update one Provider

// Update one Provider
const provider = await prisma.provider.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ProviderUpdateInput | ProviderUncheckedUpdateInput Yes
where ProviderWhereUniqueInput Yes

Output

Type: Provider
Required: No
List: No

deleteMany

Delete zero or more Provider

// Delete a few Provider
const { count } = await prisma.provider.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ProviderWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Provider

const { count } = await prisma.provider.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ProviderUpdateManyMutationInput | ProviderUncheckedUpdateManyInput Yes
where ProviderWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Provider

// Update or create a Provider
const provider = await prisma.provider.upsert({
  create: {
    // ... data to create a Provider
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Provider we want to update
  }
})

Input

Name Type Required
where ProviderWhereUniqueInput Yes
create ProviderCreateInput | ProviderUncheckedCreateInput Yes
update ProviderUpdateInput | ProviderUncheckedUpdateInput Yes

Output

Type: Provider
Required: Yes
List: No

Form

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
version String
  • -
Yes -
retired Boolean
  • @default(false)
Yes -
retiredBy String
  • -
Yes -
dateRetired DateTime
  • -
Yes -
retiredReason String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
fieldId String?
  • -
No -
encounterList Encounter[]
  • -
Yes -
field Field?
  • -
No -
formEncounterList FormEncounter[]
  • -
Yes -
formResourceList FormResource[]
  • -
Yes -
formSubmissionList FormSubmission[]
  • -
Yes -

Operations

findUnique

Find zero or one Form

// Get one Form
const form = await prisma.form.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormWhereUniqueInput Yes

Output

Type: Form
Required: No
List: No

findFirst

Find first Form

// Get one Form
const form = await prisma.form.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormWhereInput No
orderBy FormOrderByWithRelationInput[] | FormOrderByWithRelationInput No
cursor FormWhereUniqueInput No
take Int No
skip Int No
distinct FormScalarFieldEnum | FormScalarFieldEnum[] No

Output

Type: Form
Required: No
List: No

findMany

Find zero or more Form

// Get all Form
const Form = await prisma.form.findMany()
// Get first 10 Form
const Form = await prisma.form.findMany({ take: 10 })

Input

Name Type Required
where FormWhereInput No
orderBy FormOrderByWithRelationInput[] | FormOrderByWithRelationInput No
cursor FormWhereUniqueInput No
take Int No
skip Int No
distinct FormScalarFieldEnum | FormScalarFieldEnum[] No

Output

Type: Form
Required: Yes
List: Yes

create

Create one Form

// Create one Form
const Form = await prisma.form.create({
  data: {
    // ... data to create a Form
  }
})

Input

Name Type Required
data FormCreateInput | FormUncheckedCreateInput Yes

Output

Type: Form
Required: Yes
List: No

delete

Delete one Form

// Delete one Form
const Form = await prisma.form.delete({
  where: {
    // ... filter to delete one Form
  }
})

Input

Name Type Required
where FormWhereUniqueInput Yes

Output

Type: Form
Required: No
List: No

update

Update one Form

// Update one Form
const form = await prisma.form.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormUpdateInput | FormUncheckedUpdateInput Yes
where FormWhereUniqueInput Yes

Output

Type: Form
Required: No
List: No

deleteMany

Delete zero or more Form

// Delete a few Form
const { count } = await prisma.form.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Form

const { count } = await prisma.form.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormUpdateManyMutationInput | FormUncheckedUpdateManyInput Yes
where FormWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Form

// Update or create a Form
const form = await prisma.form.upsert({
  create: {
    // ... data to create a Form
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Form we want to update
  }
})

Input

Name Type Required
where FormWhereUniqueInput Yes
create FormCreateInput | FormUncheckedCreateInput Yes
update FormUpdateInput | FormUncheckedUpdateInput Yes

Output

Type: Form
Required: Yes
List: No

FormEncounter

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
formId String
  • -
Yes -
encounterId String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
encounter Encounter
  • -
Yes -
form Form
  • -
Yes -

Operations

findUnique

Find zero or one FormEncounter

// Get one FormEncounter
const formEncounter = await prisma.formEncounter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormEncounterWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FormEncounter

// Get one FormEncounter
const formEncounter = await prisma.formEncounter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormEncounterWhereInput No
orderBy FormEncounterOrderByWithRelationInput[] | FormEncounterOrderByWithRelationInput No
cursor FormEncounterWhereUniqueInput No
take Int No
skip Int No
distinct FormEncounterScalarFieldEnum | FormEncounterScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FormEncounter

// Get all FormEncounter
const FormEncounter = await prisma.formEncounter.findMany()
// Get first 10 FormEncounter
const FormEncounter = await prisma.formEncounter.findMany({ take: 10 })

Input

Name Type Required
where FormEncounterWhereInput No
orderBy FormEncounterOrderByWithRelationInput[] | FormEncounterOrderByWithRelationInput No
cursor FormEncounterWhereUniqueInput No
take Int No
skip Int No
distinct FormEncounterScalarFieldEnum | FormEncounterScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FormEncounter

// Create one FormEncounter
const FormEncounter = await prisma.formEncounter.create({
  data: {
    // ... data to create a FormEncounter
  }
})

Input

Name Type Required
data FormEncounterCreateInput | FormEncounterUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FormEncounter

// Delete one FormEncounter
const FormEncounter = await prisma.formEncounter.delete({
  where: {
    // ... filter to delete one FormEncounter
  }
})

Input

Name Type Required
where FormEncounterWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FormEncounter

// Update one FormEncounter
const formEncounter = await prisma.formEncounter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormEncounterUpdateInput | FormEncounterUncheckedUpdateInput Yes
where FormEncounterWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FormEncounter

// Delete a few FormEncounter
const { count } = await prisma.formEncounter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormEncounterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FormEncounter

const { count } = await prisma.formEncounter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormEncounterUpdateManyMutationInput | FormEncounterUncheckedUpdateManyInput Yes
where FormEncounterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FormEncounter

// Update or create a FormEncounter
const formEncounter = await prisma.formEncounter.upsert({
  create: {
    // ... data to create a FormEncounter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FormEncounter we want to update
  }
})

Input

Name Type Required
where FormEncounterWhereUniqueInput Yes
create FormEncounterCreateInput | FormEncounterUncheckedCreateInput Yes
update FormEncounterUpdateInput | FormEncounterUncheckedUpdateInput Yes

Output

Required: Yes
List: No

FormResource

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
formId String
  • -
Yes -
resourceId String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
form Form
  • -
Yes -
resource Resource
  • -
Yes -

Operations

findUnique

Find zero or one FormResource

// Get one FormResource
const formResource = await prisma.formResource.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormResourceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FormResource

// Get one FormResource
const formResource = await prisma.formResource.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormResourceWhereInput No
orderBy FormResourceOrderByWithRelationInput[] | FormResourceOrderByWithRelationInput No
cursor FormResourceWhereUniqueInput No
take Int No
skip Int No
distinct FormResourceScalarFieldEnum | FormResourceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FormResource

// Get all FormResource
const FormResource = await prisma.formResource.findMany()
// Get first 10 FormResource
const FormResource = await prisma.formResource.findMany({ take: 10 })

Input

Name Type Required
where FormResourceWhereInput No
orderBy FormResourceOrderByWithRelationInput[] | FormResourceOrderByWithRelationInput No
cursor FormResourceWhereUniqueInput No
take Int No
skip Int No
distinct FormResourceScalarFieldEnum | FormResourceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FormResource

// Create one FormResource
const FormResource = await prisma.formResource.create({
  data: {
    // ... data to create a FormResource
  }
})

Input

Name Type Required
data FormResourceCreateInput | FormResourceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FormResource

// Delete one FormResource
const FormResource = await prisma.formResource.delete({
  where: {
    // ... filter to delete one FormResource
  }
})

Input

Name Type Required
where FormResourceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FormResource

// Update one FormResource
const formResource = await prisma.formResource.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormResourceUpdateInput | FormResourceUncheckedUpdateInput Yes
where FormResourceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FormResource

// Delete a few FormResource
const { count } = await prisma.formResource.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormResourceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FormResource

const { count } = await prisma.formResource.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormResourceUpdateManyMutationInput | FormResourceUncheckedUpdateManyInput Yes
where FormResourceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FormResource

// Update or create a FormResource
const formResource = await prisma.formResource.upsert({
  create: {
    // ... data to create a FormResource
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FormResource we want to update
  }
})

Input

Name Type Required
where FormResourceWhereUniqueInput Yes
create FormResourceCreateInput | FormResourceUncheckedCreateInput Yes
update FormResourceUpdateInput | FormResourceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

FormSubmission

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
formId String
  • -
Yes -
encounterId String
  • -
Yes -
submissionDate DateTime
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
fieldAnswerList FieldAnswer[]
  • -
Yes -
encounter Encounter
  • -
Yes -
form Form
  • -
Yes -

Operations

findUnique

Find zero or one FormSubmission

// Get one FormSubmission
const formSubmission = await prisma.formSubmission.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormSubmissionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FormSubmission

// Get one FormSubmission
const formSubmission = await prisma.formSubmission.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormSubmissionWhereInput No
orderBy FormSubmissionOrderByWithRelationInput[] | FormSubmissionOrderByWithRelationInput No
cursor FormSubmissionWhereUniqueInput No
take Int No
skip Int No
distinct FormSubmissionScalarFieldEnum | FormSubmissionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FormSubmission

// Get all FormSubmission
const FormSubmission = await prisma.formSubmission.findMany()
// Get first 10 FormSubmission
const FormSubmission = await prisma.formSubmission.findMany({ take: 10 })

Input

Name Type Required
where FormSubmissionWhereInput No
orderBy FormSubmissionOrderByWithRelationInput[] | FormSubmissionOrderByWithRelationInput No
cursor FormSubmissionWhereUniqueInput No
take Int No
skip Int No
distinct FormSubmissionScalarFieldEnum | FormSubmissionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FormSubmission

// Create one FormSubmission
const FormSubmission = await prisma.formSubmission.create({
  data: {
    // ... data to create a FormSubmission
  }
})

Input

Name Type Required
data FormSubmissionCreateInput | FormSubmissionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FormSubmission

// Delete one FormSubmission
const FormSubmission = await prisma.formSubmission.delete({
  where: {
    // ... filter to delete one FormSubmission
  }
})

Input

Name Type Required
where FormSubmissionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FormSubmission

// Update one FormSubmission
const formSubmission = await prisma.formSubmission.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormSubmissionUpdateInput | FormSubmissionUncheckedUpdateInput Yes
where FormSubmissionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FormSubmission

// Delete a few FormSubmission
const { count } = await prisma.formSubmission.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FormSubmissionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FormSubmission

const { count } = await prisma.formSubmission.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FormSubmissionUpdateManyMutationInput | FormSubmissionUncheckedUpdateManyInput Yes
where FormSubmissionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FormSubmission

// Update or create a FormSubmission
const formSubmission = await prisma.formSubmission.upsert({
  create: {
    // ... data to create a FormSubmission
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FormSubmission we want to update
  }
})

Input

Name Type Required
where FormSubmissionWhereUniqueInput Yes
create FormSubmissionCreateInput | FormSubmissionUncheckedCreateInput Yes
update FormSubmissionUpdateInput | FormSubmissionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Field

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
fieldType String
  • -
Yes -
conceptId String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
concept Concept
  • -
Yes -
fieldAnswerList FieldAnswer[]
  • -
Yes -
fieldOptionList FieldOption[]
  • -
Yes -
formList Form[]
  • -
Yes -

Operations

findUnique

Find zero or one Field

// Get one Field
const field = await prisma.field.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldWhereUniqueInput Yes

Output

Type: Field
Required: No
List: No

findFirst

Find first Field

// Get one Field
const field = await prisma.field.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldWhereInput No
orderBy FieldOrderByWithRelationInput[] | FieldOrderByWithRelationInput No
cursor FieldWhereUniqueInput No
take Int No
skip Int No
distinct FieldScalarFieldEnum | FieldScalarFieldEnum[] No

Output

Type: Field
Required: No
List: No

findMany

Find zero or more Field

// Get all Field
const Field = await prisma.field.findMany()
// Get first 10 Field
const Field = await prisma.field.findMany({ take: 10 })

Input

Name Type Required
where FieldWhereInput No
orderBy FieldOrderByWithRelationInput[] | FieldOrderByWithRelationInput No
cursor FieldWhereUniqueInput No
take Int No
skip Int No
distinct FieldScalarFieldEnum | FieldScalarFieldEnum[] No

Output

Type: Field
Required: Yes
List: Yes

create

Create one Field

// Create one Field
const Field = await prisma.field.create({
  data: {
    // ... data to create a Field
  }
})

Input

Name Type Required
data FieldCreateInput | FieldUncheckedCreateInput Yes

Output

Type: Field
Required: Yes
List: No

delete

Delete one Field

// Delete one Field
const Field = await prisma.field.delete({
  where: {
    // ... filter to delete one Field
  }
})

Input

Name Type Required
where FieldWhereUniqueInput Yes

Output

Type: Field
Required: No
List: No

update

Update one Field

// Update one Field
const field = await prisma.field.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FieldUpdateInput | FieldUncheckedUpdateInput Yes
where FieldWhereUniqueInput Yes

Output

Type: Field
Required: No
List: No

deleteMany

Delete zero or more Field

// Delete a few Field
const { count } = await prisma.field.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Field

const { count } = await prisma.field.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FieldUpdateManyMutationInput | FieldUncheckedUpdateManyInput Yes
where FieldWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Field

// Update or create a Field
const field = await prisma.field.upsert({
  create: {
    // ... data to create a Field
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Field we want to update
  }
})

Input

Name Type Required
where FieldWhereUniqueInput Yes
create FieldCreateInput | FieldUncheckedCreateInput Yes
update FieldUpdateInput | FieldUncheckedUpdateInput Yes

Output

Type: Field
Required: Yes
List: No

FieldAnswer

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
formSubmissionId String
  • -
Yes -
fieldId String
  • -
Yes -
value String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
field Field
  • -
Yes -
formSubmission FormSubmission
  • -
Yes -

Operations

findUnique

Find zero or one FieldAnswer

// Get one FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldAnswerWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FieldAnswer

// Get one FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldAnswerWhereInput No
orderBy FieldAnswerOrderByWithRelationInput[] | FieldAnswerOrderByWithRelationInput No
cursor FieldAnswerWhereUniqueInput No
take Int No
skip Int No
distinct FieldAnswerScalarFieldEnum | FieldAnswerScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FieldAnswer

// Get all FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.findMany()
// Get first 10 FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.findMany({ take: 10 })

Input

Name Type Required
where FieldAnswerWhereInput No
orderBy FieldAnswerOrderByWithRelationInput[] | FieldAnswerOrderByWithRelationInput No
cursor FieldAnswerWhereUniqueInput No
take Int No
skip Int No
distinct FieldAnswerScalarFieldEnum | FieldAnswerScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FieldAnswer

// Create one FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.create({
  data: {
    // ... data to create a FieldAnswer
  }
})

Input

Name Type Required
data FieldAnswerCreateInput | FieldAnswerUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FieldAnswer

// Delete one FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.delete({
  where: {
    // ... filter to delete one FieldAnswer
  }
})

Input

Name Type Required
where FieldAnswerWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FieldAnswer

// Update one FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FieldAnswerUpdateInput | FieldAnswerUncheckedUpdateInput Yes
where FieldAnswerWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FieldAnswer

// Delete a few FieldAnswer
const { count } = await prisma.fieldAnswer.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldAnswerWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FieldAnswer

const { count } = await prisma.fieldAnswer.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FieldAnswerUpdateManyMutationInput | FieldAnswerUncheckedUpdateManyInput Yes
where FieldAnswerWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FieldAnswer

// Update or create a FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.upsert({
  create: {
    // ... data to create a FieldAnswer
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FieldAnswer we want to update
  }
})

Input

Name Type Required
where FieldAnswerWhereUniqueInput Yes
create FieldAnswerCreateInput | FieldAnswerUncheckedCreateInput Yes
update FieldAnswerUpdateInput | FieldAnswerUncheckedUpdateInput Yes

Output

Required: Yes
List: No

FieldOption

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
fieldId String
  • -
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
field Field
  • -
Yes -

Operations

findUnique

Find zero or one FieldOption

// Get one FieldOption
const fieldOption = await prisma.fieldOption.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldOptionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FieldOption

// Get one FieldOption
const fieldOption = await prisma.fieldOption.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldOptionWhereInput No
orderBy FieldOptionOrderByWithRelationInput[] | FieldOptionOrderByWithRelationInput No
cursor FieldOptionWhereUniqueInput No
take Int No
skip Int No
distinct FieldOptionScalarFieldEnum | FieldOptionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FieldOption

// Get all FieldOption
const FieldOption = await prisma.fieldOption.findMany()
// Get first 10 FieldOption
const FieldOption = await prisma.fieldOption.findMany({ take: 10 })

Input

Name Type Required
where FieldOptionWhereInput No
orderBy FieldOptionOrderByWithRelationInput[] | FieldOptionOrderByWithRelationInput No
cursor FieldOptionWhereUniqueInput No
take Int No
skip Int No
distinct FieldOptionScalarFieldEnum | FieldOptionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FieldOption

// Create one FieldOption
const FieldOption = await prisma.fieldOption.create({
  data: {
    // ... data to create a FieldOption
  }
})

Input

Name Type Required
data FieldOptionCreateInput | FieldOptionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FieldOption

// Delete one FieldOption
const FieldOption = await prisma.fieldOption.delete({
  where: {
    // ... filter to delete one FieldOption
  }
})

Input

Name Type Required
where FieldOptionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FieldOption

// Update one FieldOption
const fieldOption = await prisma.fieldOption.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FieldOptionUpdateInput | FieldOptionUncheckedUpdateInput Yes
where FieldOptionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FieldOption

// Delete a few FieldOption
const { count } = await prisma.fieldOption.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FieldOptionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FieldOption

const { count } = await prisma.fieldOption.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FieldOptionUpdateManyMutationInput | FieldOptionUncheckedUpdateManyInput Yes
where FieldOptionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FieldOption

// Update or create a FieldOption
const fieldOption = await prisma.fieldOption.upsert({
  create: {
    // ... data to create a FieldOption
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FieldOption we want to update
  }
})

Input

Name Type Required
where FieldOptionWhereUniqueInput Yes
create FieldOptionCreateInput | FieldOptionUncheckedCreateInput Yes
update FieldOptionUpdateInput | FieldOptionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Encounter

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
encounterTypeId String
  • -
Yes -
patientId String
  • -
Yes -
locationId String
  • -
Yes -
formId String
  • -
Yes -
providerId String
  • -
Yes -
startDatetime DateTime
  • -
Yes -
endDatetime DateTime
  • -
Yes -
voided Boolean
  • @default(false)
Yes -
voidedBy String
  • -
Yes -
dateVoided DateTime
  • -
Yes -
voidReason String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
encounterType EncounterType
  • -
Yes -
form Form
  • -
Yes -
location Location
  • -
Yes -
patient Patient
  • -
Yes -
provider Provider
  • -
Yes -
formEncounterList FormEncounter[]
  • -
Yes -
formSubmissionList FormSubmission[]
  • -
Yes -
obsList Obs[]
  • -
Yes -
orderList Order[]
  • -
Yes -

Operations

findUnique

Find zero or one Encounter

// Get one Encounter
const encounter = await prisma.encounter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EncounterWhereUniqueInput Yes

Output

Type: Encounter
Required: No
List: No

findFirst

Find first Encounter

// Get one Encounter
const encounter = await prisma.encounter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EncounterWhereInput No
orderBy EncounterOrderByWithRelationInput[] | EncounterOrderByWithRelationInput No
cursor EncounterWhereUniqueInput No
take Int No
skip Int No
distinct EncounterScalarFieldEnum | EncounterScalarFieldEnum[] No

Output

Type: Encounter
Required: No
List: No

findMany

Find zero or more Encounter

// Get all Encounter
const Encounter = await prisma.encounter.findMany()
// Get first 10 Encounter
const Encounter = await prisma.encounter.findMany({ take: 10 })

Input

Name Type Required
where EncounterWhereInput No
orderBy EncounterOrderByWithRelationInput[] | EncounterOrderByWithRelationInput No
cursor EncounterWhereUniqueInput No
take Int No
skip Int No
distinct EncounterScalarFieldEnum | EncounterScalarFieldEnum[] No

Output

Type: Encounter
Required: Yes
List: Yes

create

Create one Encounter

// Create one Encounter
const Encounter = await prisma.encounter.create({
  data: {
    // ... data to create a Encounter
  }
})

Input

Name Type Required
data EncounterCreateInput | EncounterUncheckedCreateInput Yes

Output

Type: Encounter
Required: Yes
List: No

delete

Delete one Encounter

// Delete one Encounter
const Encounter = await prisma.encounter.delete({
  where: {
    // ... filter to delete one Encounter
  }
})

Input

Name Type Required
where EncounterWhereUniqueInput Yes

Output

Type: Encounter
Required: No
List: No

update

Update one Encounter

// Update one Encounter
const encounter = await prisma.encounter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EncounterUpdateInput | EncounterUncheckedUpdateInput Yes
where EncounterWhereUniqueInput Yes

Output

Type: Encounter
Required: No
List: No

deleteMany

Delete zero or more Encounter

// Delete a few Encounter
const { count } = await prisma.encounter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EncounterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Encounter

const { count } = await prisma.encounter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyInput Yes
where EncounterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Encounter

// Update or create a Encounter
const encounter = await prisma.encounter.upsert({
  create: {
    // ... data to create a Encounter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Encounter we want to update
  }
})

Input

Name Type Required
where EncounterWhereUniqueInput Yes
create EncounterCreateInput | EncounterUncheckedCreateInput Yes
update EncounterUpdateInput | EncounterUncheckedUpdateInput Yes

Output

Type: Encounter
Required: Yes
List: No

EncounterType

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
encounterList Encounter[]
  • -
Yes -

Operations

findUnique

Find zero or one EncounterType

// Get one EncounterType
const encounterType = await prisma.encounterType.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EncounterTypeWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first EncounterType

// Get one EncounterType
const encounterType = await prisma.encounterType.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EncounterTypeWhereInput No
orderBy EncounterTypeOrderByWithRelationInput[] | EncounterTypeOrderByWithRelationInput No
cursor EncounterTypeWhereUniqueInput No
take Int No
skip Int No
distinct EncounterTypeScalarFieldEnum | EncounterTypeScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more EncounterType

// Get all EncounterType
const EncounterType = await prisma.encounterType.findMany()
// Get first 10 EncounterType
const EncounterType = await prisma.encounterType.findMany({ take: 10 })

Input

Name Type Required
where EncounterTypeWhereInput No
orderBy EncounterTypeOrderByWithRelationInput[] | EncounterTypeOrderByWithRelationInput No
cursor EncounterTypeWhereUniqueInput No
take Int No
skip Int No
distinct EncounterTypeScalarFieldEnum | EncounterTypeScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one EncounterType

// Create one EncounterType
const EncounterType = await prisma.encounterType.create({
  data: {
    // ... data to create a EncounterType
  }
})

Input

Name Type Required
data EncounterTypeCreateInput | EncounterTypeUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one EncounterType

// Delete one EncounterType
const EncounterType = await prisma.encounterType.delete({
  where: {
    // ... filter to delete one EncounterType
  }
})

Input

Name Type Required
where EncounterTypeWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one EncounterType

// Update one EncounterType
const encounterType = await prisma.encounterType.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EncounterTypeUpdateInput | EncounterTypeUncheckedUpdateInput Yes
where EncounterTypeWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more EncounterType

// Delete a few EncounterType
const { count } = await prisma.encounterType.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EncounterTypeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one EncounterType

const { count } = await prisma.encounterType.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EncounterTypeUpdateManyMutationInput | EncounterTypeUncheckedUpdateManyInput Yes
where EncounterTypeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one EncounterType

// Update or create a EncounterType
const encounterType = await prisma.encounterType.upsert({
  create: {
    // ... data to create a EncounterType
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the EncounterType we want to update
  }
})

Input

Name Type Required
where EncounterTypeWhereUniqueInput Yes
create EncounterTypeCreateInput | EncounterTypeUncheckedCreateInput Yes
update EncounterTypeUpdateInput | EncounterTypeUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Obs

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
encounterId String
  • -
Yes -
obsDatetime DateTime
  • -
Yes -
valueDatetime DateTime
  • -
Yes -
valueNumeric Float
  • -
Yes -
valueText String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
concept Concept
  • -
Yes -
encounter Encounter
  • -
Yes -

Operations

findUnique

Find zero or one Obs

// Get one Obs
const obs = await prisma.obs.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ObsWhereUniqueInput Yes

Output

Type: Obs
Required: No
List: No

findFirst

Find first Obs

// Get one Obs
const obs = await prisma.obs.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ObsWhereInput No
orderBy ObsOrderByWithRelationInput[] | ObsOrderByWithRelationInput No
cursor ObsWhereUniqueInput No
take Int No
skip Int No
distinct ObsScalarFieldEnum | ObsScalarFieldEnum[] No

Output

Type: Obs
Required: No
List: No

findMany

Find zero or more Obs

// Get all Obs
const Obs = await prisma.obs.findMany()
// Get first 10 Obs
const Obs = await prisma.obs.findMany({ take: 10 })

Input

Name Type Required
where ObsWhereInput No
orderBy ObsOrderByWithRelationInput[] | ObsOrderByWithRelationInput No
cursor ObsWhereUniqueInput No
take Int No
skip Int No
distinct ObsScalarFieldEnum | ObsScalarFieldEnum[] No

Output

Type: Obs
Required: Yes
List: Yes

create

Create one Obs

// Create one Obs
const Obs = await prisma.obs.create({
  data: {
    // ... data to create a Obs
  }
})

Input

Name Type Required
data ObsCreateInput | ObsUncheckedCreateInput Yes

Output

Type: Obs
Required: Yes
List: No

delete

Delete one Obs

// Delete one Obs
const Obs = await prisma.obs.delete({
  where: {
    // ... filter to delete one Obs
  }
})

Input

Name Type Required
where ObsWhereUniqueInput Yes

Output

Type: Obs
Required: No
List: No

update

Update one Obs

// Update one Obs
const obs = await prisma.obs.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ObsUpdateInput | ObsUncheckedUpdateInput Yes
where ObsWhereUniqueInput Yes

Output

Type: Obs
Required: No
List: No

deleteMany

Delete zero or more Obs

// Delete a few Obs
const { count } = await prisma.obs.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ObsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Obs

const { count } = await prisma.obs.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ObsUpdateManyMutationInput | ObsUncheckedUpdateManyInput Yes
where ObsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Obs

// Update or create a Obs
const obs = await prisma.obs.upsert({
  create: {
    // ... data to create a Obs
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Obs we want to update
  }
})

Input

Name Type Required
where ObsWhereUniqueInput Yes
create ObsCreateInput | ObsUncheckedCreateInput Yes
update ObsUpdateInput | ObsUncheckedUpdateInput Yes

Output

Type: Obs
Required: Yes
List: No

Order

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
encounterId String
  • -
Yes -
orderDatetime DateTime
  • -
Yes -
instructions String
  • -
Yes -
dosage String
  • -
Yes -
route String
  • -
Yes -
frequency String
  • -
Yes -
asNeeded Boolean
  • @default(false)
Yes -
prn Boolean
  • @default(false)
Yes -
quantity Int
  • -
Yes -
units String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
orderFrequencyId String?
  • -
No -
orderRouteId String?
  • -
No -
orderTypeId String?
  • -
No -
orderUnitId String?
  • -
No -
concept Concept
  • -
Yes -
encounter Encounter
  • -
Yes -
OrderFrequency OrderFrequency?
  • -
No -
OrderRoute OrderRoute?
  • -
No -
OrderType OrderType?
  • -
No -
OrderUnit OrderUnit?
  • -
No -

Operations

findUnique

Find zero or one Order

// Get one Order
const order = await prisma.order.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderWhereUniqueInput Yes

Output

Type: Order
Required: No
List: No

findFirst

Find first Order

// Get one Order
const order = await prisma.order.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderWhereInput No
orderBy OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput No
cursor OrderWhereUniqueInput No
take Int No
skip Int No
distinct OrderScalarFieldEnum | OrderScalarFieldEnum[] No

Output

Type: Order
Required: No
List: No

findMany

Find zero or more Order

// Get all Order
const Order = await prisma.order.findMany()
// Get first 10 Order
const Order = await prisma.order.findMany({ take: 10 })

Input

Name Type Required
where OrderWhereInput No
orderBy OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput No
cursor OrderWhereUniqueInput No
take Int No
skip Int No
distinct OrderScalarFieldEnum | OrderScalarFieldEnum[] No

Output

Type: Order
Required: Yes
List: Yes

create

Create one Order

// Create one Order
const Order = await prisma.order.create({
  data: {
    // ... data to create a Order
  }
})

Input

Name Type Required
data OrderCreateInput | OrderUncheckedCreateInput Yes

Output

Type: Order
Required: Yes
List: No

delete

Delete one Order

// Delete one Order
const Order = await prisma.order.delete({
  where: {
    // ... filter to delete one Order
  }
})

Input

Name Type Required
where OrderWhereUniqueInput Yes

Output

Type: Order
Required: No
List: No

update

Update one Order

// Update one Order
const order = await prisma.order.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderUpdateInput | OrderUncheckedUpdateInput Yes
where OrderWhereUniqueInput Yes

Output

Type: Order
Required: No
List: No

deleteMany

Delete zero or more Order

// Delete a few Order
const { count } = await prisma.order.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Order

const { count } = await prisma.order.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyInput Yes
where OrderWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Order

// Update or create a Order
const order = await prisma.order.upsert({
  create: {
    // ... data to create a Order
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Order we want to update
  }
})

Input

Name Type Required
where OrderWhereUniqueInput Yes
create OrderCreateInput | OrderUncheckedCreateInput Yes
update OrderUpdateInput | OrderUncheckedUpdateInput Yes

Output

Type: Order
Required: Yes
List: No

OrderFrequency

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
orderList Order[]
  • -
Yes -

Operations

findUnique

Find zero or one OrderFrequency

// Get one OrderFrequency
const orderFrequency = await prisma.orderFrequency.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderFrequencyWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first OrderFrequency

// Get one OrderFrequency
const orderFrequency = await prisma.orderFrequency.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderFrequencyWhereInput No
orderBy OrderFrequencyOrderByWithRelationInput[] | OrderFrequencyOrderByWithRelationInput No
cursor OrderFrequencyWhereUniqueInput No
take Int No
skip Int No
distinct OrderFrequencyScalarFieldEnum | OrderFrequencyScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more OrderFrequency

// Get all OrderFrequency
const OrderFrequency = await prisma.orderFrequency.findMany()
// Get first 10 OrderFrequency
const OrderFrequency = await prisma.orderFrequency.findMany({ take: 10 })

Input

Name Type Required
where OrderFrequencyWhereInput No
orderBy OrderFrequencyOrderByWithRelationInput[] | OrderFrequencyOrderByWithRelationInput No
cursor OrderFrequencyWhereUniqueInput No
take Int No
skip Int No
distinct OrderFrequencyScalarFieldEnum | OrderFrequencyScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one OrderFrequency

// Create one OrderFrequency
const OrderFrequency = await prisma.orderFrequency.create({
  data: {
    // ... data to create a OrderFrequency
  }
})

Input

Name Type Required
data OrderFrequencyCreateInput | OrderFrequencyUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one OrderFrequency

// Delete one OrderFrequency
const OrderFrequency = await prisma.orderFrequency.delete({
  where: {
    // ... filter to delete one OrderFrequency
  }
})

Input

Name Type Required
where OrderFrequencyWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one OrderFrequency

// Update one OrderFrequency
const orderFrequency = await prisma.orderFrequency.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderFrequencyUpdateInput | OrderFrequencyUncheckedUpdateInput Yes
where OrderFrequencyWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more OrderFrequency

// Delete a few OrderFrequency
const { count } = await prisma.orderFrequency.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderFrequencyWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one OrderFrequency

const { count } = await prisma.orderFrequency.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderFrequencyUpdateManyMutationInput | OrderFrequencyUncheckedUpdateManyInput Yes
where OrderFrequencyWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one OrderFrequency

// Update or create a OrderFrequency
const orderFrequency = await prisma.orderFrequency.upsert({
  create: {
    // ... data to create a OrderFrequency
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the OrderFrequency we want to update
  }
})

Input

Name Type Required
where OrderFrequencyWhereUniqueInput Yes
create OrderFrequencyCreateInput | OrderFrequencyUncheckedCreateInput Yes
update OrderFrequencyUpdateInput | OrderFrequencyUncheckedUpdateInput Yes

Output

Required: Yes
List: No

OrderRoute

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
orderList Order[]
  • -
Yes -

Operations

findUnique

Find zero or one OrderRoute

// Get one OrderRoute
const orderRoute = await prisma.orderRoute.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderRouteWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first OrderRoute

// Get one OrderRoute
const orderRoute = await prisma.orderRoute.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderRouteWhereInput No
orderBy OrderRouteOrderByWithRelationInput[] | OrderRouteOrderByWithRelationInput No
cursor OrderRouteWhereUniqueInput No
take Int No
skip Int No
distinct OrderRouteScalarFieldEnum | OrderRouteScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more OrderRoute

// Get all OrderRoute
const OrderRoute = await prisma.orderRoute.findMany()
// Get first 10 OrderRoute
const OrderRoute = await prisma.orderRoute.findMany({ take: 10 })

Input

Name Type Required
where OrderRouteWhereInput No
orderBy OrderRouteOrderByWithRelationInput[] | OrderRouteOrderByWithRelationInput No
cursor OrderRouteWhereUniqueInput No
take Int No
skip Int No
distinct OrderRouteScalarFieldEnum | OrderRouteScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one OrderRoute

// Create one OrderRoute
const OrderRoute = await prisma.orderRoute.create({
  data: {
    // ... data to create a OrderRoute
  }
})

Input

Name Type Required
data OrderRouteCreateInput | OrderRouteUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one OrderRoute

// Delete one OrderRoute
const OrderRoute = await prisma.orderRoute.delete({
  where: {
    // ... filter to delete one OrderRoute
  }
})

Input

Name Type Required
where OrderRouteWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one OrderRoute

// Update one OrderRoute
const orderRoute = await prisma.orderRoute.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderRouteUpdateInput | OrderRouteUncheckedUpdateInput Yes
where OrderRouteWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more OrderRoute

// Delete a few OrderRoute
const { count } = await prisma.orderRoute.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderRouteWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one OrderRoute

const { count } = await prisma.orderRoute.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderRouteUpdateManyMutationInput | OrderRouteUncheckedUpdateManyInput Yes
where OrderRouteWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one OrderRoute

// Update or create a OrderRoute
const orderRoute = await prisma.orderRoute.upsert({
  create: {
    // ... data to create a OrderRoute
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the OrderRoute we want to update
  }
})

Input

Name Type Required
where OrderRouteWhereUniqueInput Yes
create OrderRouteCreateInput | OrderRouteUncheckedCreateInput Yes
update OrderRouteUpdateInput | OrderRouteUncheckedUpdateInput Yes

Output

Required: Yes
List: No

OrderType

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
orderList Order[]
  • -
Yes -

Operations

findUnique

Find zero or one OrderType

// Get one OrderType
const orderType = await prisma.orderType.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderTypeWhereUniqueInput Yes

Output

Type: OrderType
Required: No
List: No

findFirst

Find first OrderType

// Get one OrderType
const orderType = await prisma.orderType.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderTypeWhereInput No
orderBy OrderTypeOrderByWithRelationInput[] | OrderTypeOrderByWithRelationInput No
cursor OrderTypeWhereUniqueInput No
take Int No
skip Int No
distinct OrderTypeScalarFieldEnum | OrderTypeScalarFieldEnum[] No

Output

Type: OrderType
Required: No
List: No

findMany

Find zero or more OrderType

// Get all OrderType
const OrderType = await prisma.orderType.findMany()
// Get first 10 OrderType
const OrderType = await prisma.orderType.findMany({ take: 10 })

Input

Name Type Required
where OrderTypeWhereInput No
orderBy OrderTypeOrderByWithRelationInput[] | OrderTypeOrderByWithRelationInput No
cursor OrderTypeWhereUniqueInput No
take Int No
skip Int No
distinct OrderTypeScalarFieldEnum | OrderTypeScalarFieldEnum[] No

Output

Type: OrderType
Required: Yes
List: Yes

create

Create one OrderType

// Create one OrderType
const OrderType = await prisma.orderType.create({
  data: {
    // ... data to create a OrderType
  }
})

Input

Name Type Required
data OrderTypeCreateInput | OrderTypeUncheckedCreateInput Yes

Output

Type: OrderType
Required: Yes
List: No

delete

Delete one OrderType

// Delete one OrderType
const OrderType = await prisma.orderType.delete({
  where: {
    // ... filter to delete one OrderType
  }
})

Input

Name Type Required
where OrderTypeWhereUniqueInput Yes

Output

Type: OrderType
Required: No
List: No

update

Update one OrderType

// Update one OrderType
const orderType = await prisma.orderType.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderTypeUpdateInput | OrderTypeUncheckedUpdateInput Yes
where OrderTypeWhereUniqueInput Yes

Output

Type: OrderType
Required: No
List: No

deleteMany

Delete zero or more OrderType

// Delete a few OrderType
const { count } = await prisma.orderType.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderTypeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one OrderType

const { count } = await prisma.orderType.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderTypeUpdateManyMutationInput | OrderTypeUncheckedUpdateManyInput Yes
where OrderTypeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one OrderType

// Update or create a OrderType
const orderType = await prisma.orderType.upsert({
  create: {
    // ... data to create a OrderType
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the OrderType we want to update
  }
})

Input

Name Type Required
where OrderTypeWhereUniqueInput Yes
create OrderTypeCreateInput | OrderTypeUncheckedCreateInput Yes
update OrderTypeUpdateInput | OrderTypeUncheckedUpdateInput Yes

Output

Type: OrderType
Required: Yes
List: No

OrderUnit

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
orderList Order[]
  • -
Yes -

Operations

findUnique

Find zero or one OrderUnit

// Get one OrderUnit
const orderUnit = await prisma.orderUnit.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderUnitWhereUniqueInput Yes

Output

Type: OrderUnit
Required: No
List: No

findFirst

Find first OrderUnit

// Get one OrderUnit
const orderUnit = await prisma.orderUnit.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderUnitWhereInput No
orderBy OrderUnitOrderByWithRelationInput[] | OrderUnitOrderByWithRelationInput No
cursor OrderUnitWhereUniqueInput No
take Int No
skip Int No
distinct OrderUnitScalarFieldEnum | OrderUnitScalarFieldEnum[] No

Output

Type: OrderUnit
Required: No
List: No

findMany

Find zero or more OrderUnit

// Get all OrderUnit
const OrderUnit = await prisma.orderUnit.findMany()
// Get first 10 OrderUnit
const OrderUnit = await prisma.orderUnit.findMany({ take: 10 })

Input

Name Type Required
where OrderUnitWhereInput No
orderBy OrderUnitOrderByWithRelationInput[] | OrderUnitOrderByWithRelationInput No
cursor OrderUnitWhereUniqueInput No
take Int No
skip Int No
distinct OrderUnitScalarFieldEnum | OrderUnitScalarFieldEnum[] No

Output

Type: OrderUnit
Required: Yes
List: Yes

create

Create one OrderUnit

// Create one OrderUnit
const OrderUnit = await prisma.orderUnit.create({
  data: {
    // ... data to create a OrderUnit
  }
})

Input

Name Type Required
data OrderUnitCreateInput | OrderUnitUncheckedCreateInput Yes

Output

Type: OrderUnit
Required: Yes
List: No

delete

Delete one OrderUnit

// Delete one OrderUnit
const OrderUnit = await prisma.orderUnit.delete({
  where: {
    // ... filter to delete one OrderUnit
  }
})

Input

Name Type Required
where OrderUnitWhereUniqueInput Yes

Output

Type: OrderUnit
Required: No
List: No

update

Update one OrderUnit

// Update one OrderUnit
const orderUnit = await prisma.orderUnit.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderUnitUpdateInput | OrderUnitUncheckedUpdateInput Yes
where OrderUnitWhereUniqueInput Yes

Output

Type: OrderUnit
Required: No
List: No

deleteMany

Delete zero or more OrderUnit

// Delete a few OrderUnit
const { count } = await prisma.orderUnit.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderUnitWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one OrderUnit

const { count } = await prisma.orderUnit.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderUnitUpdateManyMutationInput | OrderUnitUncheckedUpdateManyInput Yes
where OrderUnitWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one OrderUnit

// Update or create a OrderUnit
const orderUnit = await prisma.orderUnit.upsert({
  create: {
    // ... data to create a OrderUnit
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the OrderUnit we want to update
  }
})

Input

Name Type Required
where OrderUnitWhereUniqueInput Yes
create OrderUnitCreateInput | OrderUnitUncheckedCreateInput Yes
update OrderUnitUpdateInput | OrderUnitUncheckedUpdateInput Yes

Output

Type: OrderUnit
Required: Yes
List: No

Concept

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
dataType String
  • -
Yes -
class String
  • -
Yes -
isRetired Boolean
  • @default(false)
Yes -
retiredBy String
  • -
Yes -
dateRetired DateTime
  • -
Yes -
retiredReason String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
conceptClassId String?
  • -
No -
conceptDatatypeId String?
  • -
No -
conceptMapId String?
  • -
No -
conceptSetId String?
  • -
No -
conceptSourceId String?
  • -
No -
ConceptClass ConceptClass?
  • -
No -
ConceptDatatype ConceptDatatype?
  • -
No -
conceptMap ConceptMap?
  • -
No -
conceptSet ConceptSet?
  • -
No -
conceptSource ConceptSource?
  • -
No -
answerList ConceptAnswer[]
  • -
Yes -
metaList ConceptAnswer[]
  • -
Yes -
conceptNameList ConceptName[]
  • -
Yes -
conceptNumericList ConceptNumeric[]
  • -
Yes -
conceptProposalList ConceptProposal[]
  • -
Yes -
conceptWordList ConceptWord[]
  • -
Yes -
fieldList Field[]
  • -
Yes -
obsList Obs[]
  • -
Yes -
orderList Order[]
  • -
Yes -

Operations

findUnique

Find zero or one Concept

// Get one Concept
const concept = await prisma.concept.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWhereUniqueInput Yes

Output

Type: Concept
Required: No
List: No

findFirst

Find first Concept

// Get one Concept
const concept = await prisma.concept.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWhereInput No
orderBy ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput No
cursor ConceptWhereUniqueInput No
take Int No
skip Int No
distinct ConceptScalarFieldEnum | ConceptScalarFieldEnum[] No

Output

Type: Concept
Required: No
List: No

findMany

Find zero or more Concept

// Get all Concept
const Concept = await prisma.concept.findMany()
// Get first 10 Concept
const Concept = await prisma.concept.findMany({ take: 10 })

Input

Name Type Required
where ConceptWhereInput No
orderBy ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput No
cursor ConceptWhereUniqueInput No
take Int No
skip Int No
distinct ConceptScalarFieldEnum | ConceptScalarFieldEnum[] No

Output

Type: Concept
Required: Yes
List: Yes

create

Create one Concept

// Create one Concept
const Concept = await prisma.concept.create({
  data: {
    // ... data to create a Concept
  }
})

Input

Name Type Required
data ConceptCreateInput | ConceptUncheckedCreateInput Yes

Output

Type: Concept
Required: Yes
List: No

delete

Delete one Concept

// Delete one Concept
const Concept = await prisma.concept.delete({
  where: {
    // ... filter to delete one Concept
  }
})

Input

Name Type Required
where ConceptWhereUniqueInput Yes

Output

Type: Concept
Required: No
List: No

update

Update one Concept

// Update one Concept
const concept = await prisma.concept.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptUpdateInput | ConceptUncheckedUpdateInput Yes
where ConceptWhereUniqueInput Yes

Output

Type: Concept
Required: No
List: No

deleteMany

Delete zero or more Concept

// Delete a few Concept
const { count } = await prisma.concept.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Concept

const { count } = await prisma.concept.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyInput Yes
where ConceptWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Concept

// Update or create a Concept
const concept = await prisma.concept.upsert({
  create: {
    // ... data to create a Concept
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Concept we want to update
  }
})

Input

Name Type Required
where ConceptWhereUniqueInput Yes
create ConceptCreateInput | ConceptUncheckedCreateInput Yes
update ConceptUpdateInput | ConceptUncheckedUpdateInput Yes

Output

Type: Concept
Required: Yes
List: No

ConceptAnswer

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
answerConceptId String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
answerConcept Concept
  • -
Yes -
concept Concept
  • -
Yes -

Operations

findUnique

Find zero or one ConceptAnswer

// Get one ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptAnswerWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptAnswer

// Get one ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptAnswerWhereInput No
orderBy ConceptAnswerOrderByWithRelationInput[] | ConceptAnswerOrderByWithRelationInput No
cursor ConceptAnswerWhereUniqueInput No
take Int No
skip Int No
distinct ConceptAnswerScalarFieldEnum | ConceptAnswerScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptAnswer

// Get all ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.findMany()
// Get first 10 ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.findMany({ take: 10 })

Input

Name Type Required
where ConceptAnswerWhereInput No
orderBy ConceptAnswerOrderByWithRelationInput[] | ConceptAnswerOrderByWithRelationInput No
cursor ConceptAnswerWhereUniqueInput No
take Int No
skip Int No
distinct ConceptAnswerScalarFieldEnum | ConceptAnswerScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptAnswer

// Create one ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.create({
  data: {
    // ... data to create a ConceptAnswer
  }
})

Input

Name Type Required
data ConceptAnswerCreateInput | ConceptAnswerUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptAnswer

// Delete one ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.delete({
  where: {
    // ... filter to delete one ConceptAnswer
  }
})

Input

Name Type Required
where ConceptAnswerWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptAnswer

// Update one ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptAnswerUpdateInput | ConceptAnswerUncheckedUpdateInput Yes
where ConceptAnswerWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptAnswer

// Delete a few ConceptAnswer
const { count } = await prisma.conceptAnswer.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptAnswerWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptAnswer

const { count } = await prisma.conceptAnswer.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptAnswerUpdateManyMutationInput | ConceptAnswerUncheckedUpdateManyInput Yes
where ConceptAnswerWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptAnswer

// Update or create a ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.upsert({
  create: {
    // ... data to create a ConceptAnswer
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptAnswer we want to update
  }
})

Input

Name Type Required
where ConceptAnswerWhereUniqueInput Yes
create ConceptAnswerCreateInput | ConceptAnswerUncheckedCreateInput Yes
update ConceptAnswerUpdateInput | ConceptAnswerUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptClass

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
conceptList Concept[]
  • -
Yes -

Operations

findUnique

Find zero or one ConceptClass

// Get one ConceptClass
const conceptClass = await prisma.conceptClass.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptClassWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptClass

// Get one ConceptClass
const conceptClass = await prisma.conceptClass.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptClassWhereInput No
orderBy ConceptClassOrderByWithRelationInput[] | ConceptClassOrderByWithRelationInput No
cursor ConceptClassWhereUniqueInput No
take Int No
skip Int No
distinct ConceptClassScalarFieldEnum | ConceptClassScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptClass

// Get all ConceptClass
const ConceptClass = await prisma.conceptClass.findMany()
// Get first 10 ConceptClass
const ConceptClass = await prisma.conceptClass.findMany({ take: 10 })

Input

Name Type Required
where ConceptClassWhereInput No
orderBy ConceptClassOrderByWithRelationInput[] | ConceptClassOrderByWithRelationInput No
cursor ConceptClassWhereUniqueInput No
take Int No
skip Int No
distinct ConceptClassScalarFieldEnum | ConceptClassScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptClass

// Create one ConceptClass
const ConceptClass = await prisma.conceptClass.create({
  data: {
    // ... data to create a ConceptClass
  }
})

Input

Name Type Required
data ConceptClassCreateInput | ConceptClassUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptClass

// Delete one ConceptClass
const ConceptClass = await prisma.conceptClass.delete({
  where: {
    // ... filter to delete one ConceptClass
  }
})

Input

Name Type Required
where ConceptClassWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptClass

// Update one ConceptClass
const conceptClass = await prisma.conceptClass.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptClassUpdateInput | ConceptClassUncheckedUpdateInput Yes
where ConceptClassWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptClass

// Delete a few ConceptClass
const { count } = await prisma.conceptClass.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptClassWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptClass

const { count } = await prisma.conceptClass.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptClassUpdateManyMutationInput | ConceptClassUncheckedUpdateManyInput Yes
where ConceptClassWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptClass

// Update or create a ConceptClass
const conceptClass = await prisma.conceptClass.upsert({
  create: {
    // ... data to create a ConceptClass
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptClass we want to update
  }
})

Input

Name Type Required
where ConceptClassWhereUniqueInput Yes
create ConceptClassCreateInput | ConceptClassUncheckedCreateInput Yes
update ConceptClassUpdateInput | ConceptClassUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptDatatype

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
conceptList Concept[]
  • -
Yes -

Operations

findUnique

Find zero or one ConceptDatatype

// Get one ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptDatatypeWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptDatatype

// Get one ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptDatatypeWhereInput No
orderBy ConceptDatatypeOrderByWithRelationInput[] | ConceptDatatypeOrderByWithRelationInput No
cursor ConceptDatatypeWhereUniqueInput No
take Int No
skip Int No
distinct ConceptDatatypeScalarFieldEnum | ConceptDatatypeScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptDatatype

// Get all ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.findMany()
// Get first 10 ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.findMany({ take: 10 })

Input

Name Type Required
where ConceptDatatypeWhereInput No
orderBy ConceptDatatypeOrderByWithRelationInput[] | ConceptDatatypeOrderByWithRelationInput No
cursor ConceptDatatypeWhereUniqueInput No
take Int No
skip Int No
distinct ConceptDatatypeScalarFieldEnum | ConceptDatatypeScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptDatatype

// Create one ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.create({
  data: {
    // ... data to create a ConceptDatatype
  }
})

Input

Name Type Required
data ConceptDatatypeCreateInput | ConceptDatatypeUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptDatatype

// Delete one ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.delete({
  where: {
    // ... filter to delete one ConceptDatatype
  }
})

Input

Name Type Required
where ConceptDatatypeWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptDatatype

// Update one ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptDatatypeUpdateInput | ConceptDatatypeUncheckedUpdateInput Yes
where ConceptDatatypeWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptDatatype

// Delete a few ConceptDatatype
const { count } = await prisma.conceptDatatype.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptDatatypeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptDatatype

const { count } = await prisma.conceptDatatype.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptDatatypeUpdateManyMutationInput | ConceptDatatypeUncheckedUpdateManyInput Yes
where ConceptDatatypeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptDatatype

// Update or create a ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.upsert({
  create: {
    // ... data to create a ConceptDatatype
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptDatatype we want to update
  }
})

Input

Name Type Required
where ConceptDatatypeWhereUniqueInput Yes
create ConceptDatatypeCreateInput | ConceptDatatypeUncheckedCreateInput Yes
update ConceptDatatypeUpdateInput | ConceptDatatypeUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptMap

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
conceptList Concept[]
  • -
Yes -

Operations

findUnique

Find zero or one ConceptMap

// Get one ConceptMap
const conceptMap = await prisma.conceptMap.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptMapWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptMap

// Get one ConceptMap
const conceptMap = await prisma.conceptMap.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptMapWhereInput No
orderBy ConceptMapOrderByWithRelationInput[] | ConceptMapOrderByWithRelationInput No
cursor ConceptMapWhereUniqueInput No
take Int No
skip Int No
distinct ConceptMapScalarFieldEnum | ConceptMapScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptMap

// Get all ConceptMap
const ConceptMap = await prisma.conceptMap.findMany()
// Get first 10 ConceptMap
const ConceptMap = await prisma.conceptMap.findMany({ take: 10 })

Input

Name Type Required
where ConceptMapWhereInput No
orderBy ConceptMapOrderByWithRelationInput[] | ConceptMapOrderByWithRelationInput No
cursor ConceptMapWhereUniqueInput No
take Int No
skip Int No
distinct ConceptMapScalarFieldEnum | ConceptMapScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptMap

// Create one ConceptMap
const ConceptMap = await prisma.conceptMap.create({
  data: {
    // ... data to create a ConceptMap
  }
})

Input

Name Type Required
data ConceptMapCreateInput | ConceptMapUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptMap

// Delete one ConceptMap
const ConceptMap = await prisma.conceptMap.delete({
  where: {
    // ... filter to delete one ConceptMap
  }
})

Input

Name Type Required
where ConceptMapWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptMap

// Update one ConceptMap
const conceptMap = await prisma.conceptMap.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptMapUpdateInput | ConceptMapUncheckedUpdateInput Yes
where ConceptMapWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptMap

// Delete a few ConceptMap
const { count } = await prisma.conceptMap.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptMapWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptMap

const { count } = await prisma.conceptMap.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptMapUpdateManyMutationInput | ConceptMapUncheckedUpdateManyInput Yes
where ConceptMapWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptMap

// Update or create a ConceptMap
const conceptMap = await prisma.conceptMap.upsert({
  create: {
    // ... data to create a ConceptMap
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptMap we want to update
  }
})

Input

Name Type Required
where ConceptMapWhereUniqueInput Yes
create ConceptMapCreateInput | ConceptMapUncheckedCreateInput Yes
update ConceptMapUpdateInput | ConceptMapUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptName

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
name String
  • -
Yes -
locale String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
concept Concept
  • -
Yes -

Operations

findUnique

Find zero or one ConceptName

// Get one ConceptName
const conceptName = await prisma.conceptName.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptNameWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptName

// Get one ConceptName
const conceptName = await prisma.conceptName.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptNameWhereInput No
orderBy ConceptNameOrderByWithRelationInput[] | ConceptNameOrderByWithRelationInput No
cursor ConceptNameWhereUniqueInput No
take Int No
skip Int No
distinct ConceptNameScalarFieldEnum | ConceptNameScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptName

// Get all ConceptName
const ConceptName = await prisma.conceptName.findMany()
// Get first 10 ConceptName
const ConceptName = await prisma.conceptName.findMany({ take: 10 })

Input

Name Type Required
where ConceptNameWhereInput No
orderBy ConceptNameOrderByWithRelationInput[] | ConceptNameOrderByWithRelationInput No
cursor ConceptNameWhereUniqueInput No
take Int No
skip Int No
distinct ConceptNameScalarFieldEnum | ConceptNameScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptName

// Create one ConceptName
const ConceptName = await prisma.conceptName.create({
  data: {
    // ... data to create a ConceptName
  }
})

Input

Name Type Required
data ConceptNameCreateInput | ConceptNameUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptName

// Delete one ConceptName
const ConceptName = await prisma.conceptName.delete({
  where: {
    // ... filter to delete one ConceptName
  }
})

Input

Name Type Required
where ConceptNameWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptName

// Update one ConceptName
const conceptName = await prisma.conceptName.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptNameUpdateInput | ConceptNameUncheckedUpdateInput Yes
where ConceptNameWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptName

// Delete a few ConceptName
const { count } = await prisma.conceptName.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptNameWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptName

const { count } = await prisma.conceptName.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptNameUpdateManyMutationInput | ConceptNameUncheckedUpdateManyInput Yes
where ConceptNameWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptName

// Update or create a ConceptName
const conceptName = await prisma.conceptName.upsert({
  create: {
    // ... data to create a ConceptName
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptName we want to update
  }
})

Input

Name Type Required
where ConceptNameWhereUniqueInput Yes
create ConceptNameCreateInput | ConceptNameUncheckedCreateInput Yes
update ConceptNameUpdateInput | ConceptNameUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptNumeric

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
hiAbsolute Float
  • -
Yes -
hiCritical Float
  • -
Yes -
hiNormal Float
  • -
Yes -
lowAbsolute Float
  • -
Yes -
lowCritical Float
  • -
Yes -
lowNormal Float
  • -
Yes -
units String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
concept Concept
  • -
Yes -

Operations

findUnique

Find zero or one ConceptNumeric

// Get one ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptNumericWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptNumeric

// Get one ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptNumericWhereInput No
orderBy ConceptNumericOrderByWithRelationInput[] | ConceptNumericOrderByWithRelationInput No
cursor ConceptNumericWhereUniqueInput No
take Int No
skip Int No
distinct ConceptNumericScalarFieldEnum | ConceptNumericScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptNumeric

// Get all ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.findMany()
// Get first 10 ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.findMany({ take: 10 })

Input

Name Type Required
where ConceptNumericWhereInput No
orderBy ConceptNumericOrderByWithRelationInput[] | ConceptNumericOrderByWithRelationInput No
cursor ConceptNumericWhereUniqueInput No
take Int No
skip Int No
distinct ConceptNumericScalarFieldEnum | ConceptNumericScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptNumeric

// Create one ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.create({
  data: {
    // ... data to create a ConceptNumeric
  }
})

Input

Name Type Required
data ConceptNumericCreateInput | ConceptNumericUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptNumeric

// Delete one ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.delete({
  where: {
    // ... filter to delete one ConceptNumeric
  }
})

Input

Name Type Required
where ConceptNumericWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptNumeric

// Update one ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptNumericUpdateInput | ConceptNumericUncheckedUpdateInput Yes
where ConceptNumericWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptNumeric

// Delete a few ConceptNumeric
const { count } = await prisma.conceptNumeric.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptNumericWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptNumeric

const { count } = await prisma.conceptNumeric.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptNumericUpdateManyMutationInput | ConceptNumericUncheckedUpdateManyInput Yes
where ConceptNumericWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptNumeric

// Update or create a ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.upsert({
  create: {
    // ... data to create a ConceptNumeric
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptNumeric we want to update
  }
})

Input

Name Type Required
where ConceptNumericWhereUniqueInput Yes
create ConceptNumericCreateInput | ConceptNumericUncheckedCreateInput Yes
update ConceptNumericUpdateInput | ConceptNumericUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptProposal

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
concept Concept
  • -
Yes -

Operations

findUnique

Find zero or one ConceptProposal

// Get one ConceptProposal
const conceptProposal = await prisma.conceptProposal.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptProposalWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptProposal

// Get one ConceptProposal
const conceptProposal = await prisma.conceptProposal.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptProposalWhereInput No
orderBy ConceptProposalOrderByWithRelationInput[] | ConceptProposalOrderByWithRelationInput No
cursor ConceptProposalWhereUniqueInput No
take Int No
skip Int No
distinct ConceptProposalScalarFieldEnum | ConceptProposalScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptProposal

// Get all ConceptProposal
const ConceptProposal = await prisma.conceptProposal.findMany()
// Get first 10 ConceptProposal
const ConceptProposal = await prisma.conceptProposal.findMany({ take: 10 })

Input

Name Type Required
where ConceptProposalWhereInput No
orderBy ConceptProposalOrderByWithRelationInput[] | ConceptProposalOrderByWithRelationInput No
cursor ConceptProposalWhereUniqueInput No
take Int No
skip Int No
distinct ConceptProposalScalarFieldEnum | ConceptProposalScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptProposal

// Create one ConceptProposal
const ConceptProposal = await prisma.conceptProposal.create({
  data: {
    // ... data to create a ConceptProposal
  }
})

Input

Name Type Required
data ConceptProposalCreateInput | ConceptProposalUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptProposal

// Delete one ConceptProposal
const ConceptProposal = await prisma.conceptProposal.delete({
  where: {
    // ... filter to delete one ConceptProposal
  }
})

Input

Name Type Required
where ConceptProposalWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptProposal

// Update one ConceptProposal
const conceptProposal = await prisma.conceptProposal.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptProposalUpdateInput | ConceptProposalUncheckedUpdateInput Yes
where ConceptProposalWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptProposal

// Delete a few ConceptProposal
const { count } = await prisma.conceptProposal.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptProposalWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptProposal

const { count } = await prisma.conceptProposal.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptProposalUpdateManyMutationInput | ConceptProposalUncheckedUpdateManyInput Yes
where ConceptProposalWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptProposal

// Update or create a ConceptProposal
const conceptProposal = await prisma.conceptProposal.upsert({
  create: {
    // ... data to create a ConceptProposal
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptProposal we want to update
  }
})

Input

Name Type Required
where ConceptProposalWhereUniqueInput Yes
create ConceptProposalCreateInput | ConceptProposalUncheckedCreateInput Yes
update ConceptProposalUpdateInput | ConceptProposalUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptSet

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
conceptList Concept[]
  • -
Yes -

Operations

findUnique

Find zero or one ConceptSet

// Get one ConceptSet
const conceptSet = await prisma.conceptSet.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptSetWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptSet

// Get one ConceptSet
const conceptSet = await prisma.conceptSet.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptSetWhereInput No
orderBy ConceptSetOrderByWithRelationInput[] | ConceptSetOrderByWithRelationInput No
cursor ConceptSetWhereUniqueInput No
take Int No
skip Int No
distinct ConceptSetScalarFieldEnum | ConceptSetScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptSet

// Get all ConceptSet
const ConceptSet = await prisma.conceptSet.findMany()
// Get first 10 ConceptSet
const ConceptSet = await prisma.conceptSet.findMany({ take: 10 })

Input

Name Type Required
where ConceptSetWhereInput No
orderBy ConceptSetOrderByWithRelationInput[] | ConceptSetOrderByWithRelationInput No
cursor ConceptSetWhereUniqueInput No
take Int No
skip Int No
distinct ConceptSetScalarFieldEnum | ConceptSetScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptSet

// Create one ConceptSet
const ConceptSet = await prisma.conceptSet.create({
  data: {
    // ... data to create a ConceptSet
  }
})

Input

Name Type Required
data ConceptSetCreateInput | ConceptSetUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptSet

// Delete one ConceptSet
const ConceptSet = await prisma.conceptSet.delete({
  where: {
    // ... filter to delete one ConceptSet
  }
})

Input

Name Type Required
where ConceptSetWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptSet

// Update one ConceptSet
const conceptSet = await prisma.conceptSet.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptSetUpdateInput | ConceptSetUncheckedUpdateInput Yes
where ConceptSetWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptSet

// Delete a few ConceptSet
const { count } = await prisma.conceptSet.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptSetWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptSet

const { count } = await prisma.conceptSet.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptSetUpdateManyMutationInput | ConceptSetUncheckedUpdateManyInput Yes
where ConceptSetWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptSet

// Update or create a ConceptSet
const conceptSet = await prisma.conceptSet.upsert({
  create: {
    // ... data to create a ConceptSet
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptSet we want to update
  }
})

Input

Name Type Required
where ConceptSetWhereUniqueInput Yes
create ConceptSetCreateInput | ConceptSetUncheckedCreateInput Yes
update ConceptSetUpdateInput | ConceptSetUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptSource

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
conceptList Concept[]
  • -
Yes -

Operations

findUnique

Find zero or one ConceptSource

// Get one ConceptSource
const conceptSource = await prisma.conceptSource.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptSourceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptSource

// Get one ConceptSource
const conceptSource = await prisma.conceptSource.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptSourceWhereInput No
orderBy ConceptSourceOrderByWithRelationInput[] | ConceptSourceOrderByWithRelationInput No
cursor ConceptSourceWhereUniqueInput No
take Int No
skip Int No
distinct ConceptSourceScalarFieldEnum | ConceptSourceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptSource

// Get all ConceptSource
const ConceptSource = await prisma.conceptSource.findMany()
// Get first 10 ConceptSource
const ConceptSource = await prisma.conceptSource.findMany({ take: 10 })

Input

Name Type Required
where ConceptSourceWhereInput No
orderBy ConceptSourceOrderByWithRelationInput[] | ConceptSourceOrderByWithRelationInput No
cursor ConceptSourceWhereUniqueInput No
take Int No
skip Int No
distinct ConceptSourceScalarFieldEnum | ConceptSourceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptSource

// Create one ConceptSource
const ConceptSource = await prisma.conceptSource.create({
  data: {
    // ... data to create a ConceptSource
  }
})

Input

Name Type Required
data ConceptSourceCreateInput | ConceptSourceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptSource

// Delete one ConceptSource
const ConceptSource = await prisma.conceptSource.delete({
  where: {
    // ... filter to delete one ConceptSource
  }
})

Input

Name Type Required
where ConceptSourceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptSource

// Update one ConceptSource
const conceptSource = await prisma.conceptSource.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptSourceUpdateInput | ConceptSourceUncheckedUpdateInput Yes
where ConceptSourceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptSource

// Delete a few ConceptSource
const { count } = await prisma.conceptSource.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptSourceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptSource

const { count } = await prisma.conceptSource.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptSourceUpdateManyMutationInput | ConceptSourceUncheckedUpdateManyInput Yes
where ConceptSourceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptSource

// Update or create a ConceptSource
const conceptSource = await prisma.conceptSource.upsert({
  create: {
    // ... data to create a ConceptSource
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptSource we want to update
  }
})

Input

Name Type Required
where ConceptSourceWhereUniqueInput Yes
create ConceptSourceCreateInput | ConceptSourceUncheckedCreateInput Yes
update ConceptSourceUpdateInput | ConceptSourceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ConceptWord

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
conceptId String
  • -
Yes -
word String
  • -
Yes -
locale String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
concept Concept
  • -
Yes -

Operations

findUnique

Find zero or one ConceptWord

// Get one ConceptWord
const conceptWord = await prisma.conceptWord.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWordWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ConceptWord

// Get one ConceptWord
const conceptWord = await prisma.conceptWord.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWordWhereInput No
orderBy ConceptWordOrderByWithRelationInput[] | ConceptWordOrderByWithRelationInput No
cursor ConceptWordWhereUniqueInput No
take Int No
skip Int No
distinct ConceptWordScalarFieldEnum | ConceptWordScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ConceptWord

// Get all ConceptWord
const ConceptWord = await prisma.conceptWord.findMany()
// Get first 10 ConceptWord
const ConceptWord = await prisma.conceptWord.findMany({ take: 10 })

Input

Name Type Required
where ConceptWordWhereInput No
orderBy ConceptWordOrderByWithRelationInput[] | ConceptWordOrderByWithRelationInput No
cursor ConceptWordWhereUniqueInput No
take Int No
skip Int No
distinct ConceptWordScalarFieldEnum | ConceptWordScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ConceptWord

// Create one ConceptWord
const ConceptWord = await prisma.conceptWord.create({
  data: {
    // ... data to create a ConceptWord
  }
})

Input

Name Type Required
data ConceptWordCreateInput | ConceptWordUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ConceptWord

// Delete one ConceptWord
const ConceptWord = await prisma.conceptWord.delete({
  where: {
    // ... filter to delete one ConceptWord
  }
})

Input

Name Type Required
where ConceptWordWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ConceptWord

// Update one ConceptWord
const conceptWord = await prisma.conceptWord.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptWordUpdateInput | ConceptWordUncheckedUpdateInput Yes
where ConceptWordWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ConceptWord

// Delete a few ConceptWord
const { count } = await prisma.conceptWord.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWordWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ConceptWord

const { count } = await prisma.conceptWord.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptWordUpdateManyMutationInput | ConceptWordUncheckedUpdateManyInput Yes
where ConceptWordWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ConceptWord

// Update or create a ConceptWord
const conceptWord = await prisma.conceptWord.upsert({
  create: {
    // ... data to create a ConceptWord
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ConceptWord we want to update
  }
})

Input

Name Type Required
where ConceptWordWhereUniqueInput Yes
create ConceptWordCreateInput | ConceptWordUncheckedCreateInput Yes
update ConceptWordUpdateInput | ConceptWordUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Resource

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
uuid String
  • @unique
Yes -
name String
  • -
Yes -
description String
  • -
Yes -
creator String
  • -
Yes -
dateCreated DateTime
  • -
Yes -
lastChangedBy String
  • -
Yes -
lastChangedDate DateTime
  • -
Yes -
formResourceList FormResource[]
  • -
Yes -

Operations

findUnique

Find zero or one Resource

// Get one Resource
const resource = await prisma.resource.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceWhereUniqueInput Yes

Output

Type: Resource
Required: No
List: No

findFirst

Find first Resource

// Get one Resource
const resource = await prisma.resource.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceWhereInput No
orderBy ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput No
cursor ResourceWhereUniqueInput No
take Int No
skip Int No
distinct ResourceScalarFieldEnum | ResourceScalarFieldEnum[] No

Output

Type: Resource
Required: No
List: No

findMany

Find zero or more Resource

// Get all Resource
const Resource = await prisma.resource.findMany()
// Get first 10 Resource
const Resource = await prisma.resource.findMany({ take: 10 })

Input

Name Type Required
where ResourceWhereInput No
orderBy ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput No
cursor ResourceWhereUniqueInput No
take Int No
skip Int No
distinct ResourceScalarFieldEnum | ResourceScalarFieldEnum[] No

Output

Type: Resource
Required: Yes
List: Yes

create

Create one Resource

// Create one Resource
const Resource = await prisma.resource.create({
  data: {
    // ... data to create a Resource
  }
})

Input

Name Type Required
data ResourceCreateInput | ResourceUncheckedCreateInput Yes

Output

Type: Resource
Required: Yes
List: No

delete

Delete one Resource

// Delete one Resource
const Resource = await prisma.resource.delete({
  where: {
    // ... filter to delete one Resource
  }
})

Input

Name Type Required
where ResourceWhereUniqueInput Yes

Output

Type: Resource
Required: No
List: No

update

Update one Resource

// Update one Resource
const resource = await prisma.resource.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ResourceUpdateInput | ResourceUncheckedUpdateInput Yes
where ResourceWhereUniqueInput Yes

Output

Type: Resource
Required: No
List: No

deleteMany

Delete zero or more Resource

// Delete a few Resource
const { count } = await prisma.resource.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Resource

const { count } = await prisma.resource.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ResourceUpdateManyMutationInput | ResourceUncheckedUpdateManyInput Yes
where ResourceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Resource

// Update or create a Resource
const resource = await prisma.resource.upsert({
  create: {
    // ... data to create a Resource
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Resource we want to update
  }
})

Input

Name Type Required
where ResourceWhereUniqueInput Yes
create ResourceCreateInput | ResourceUncheckedCreateInput Yes
update ResourceUpdateInput | ResourceUncheckedUpdateInput Yes

Output

Type: Resource
Required: Yes
List: No

BlogPost

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
title String
  • -
Yes -
content String
  • -
Yes -
context Json
  • -
Yes -
authorId String
  • -
Yes -
spaceTimeCoordinatesId String
  • @unique
Yes -
author BlogPostAuthor
  • -
Yes -
spaceTimeCoordinates SpaceTimeCoordinates
  • -
Yes -
tagArrowList BlogPostTagArrow[]
  • -
Yes -

Operations

findUnique

Find zero or one BlogPost

// Get one BlogPost
const blogPost = await prisma.blogPost.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostWhereUniqueInput Yes

Output

Type: BlogPost
Required: No
List: No

findFirst

Find first BlogPost

// Get one BlogPost
const blogPost = await prisma.blogPost.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostWhereInput No
orderBy BlogPostOrderByWithRelationInput[] | BlogPostOrderByWithRelationInput No
cursor BlogPostWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostScalarFieldEnum | BlogPostScalarFieldEnum[] No

Output

Type: BlogPost
Required: No
List: No

findMany

Find zero or more BlogPost

// Get all BlogPost
const BlogPost = await prisma.blogPost.findMany()
// Get first 10 BlogPost
const BlogPost = await prisma.blogPost.findMany({ take: 10 })

Input

Name Type Required
where BlogPostWhereInput No
orderBy BlogPostOrderByWithRelationInput[] | BlogPostOrderByWithRelationInput No
cursor BlogPostWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostScalarFieldEnum | BlogPostScalarFieldEnum[] No

Output

Type: BlogPost
Required: Yes
List: Yes

create

Create one BlogPost

// Create one BlogPost
const BlogPost = await prisma.blogPost.create({
  data: {
    // ... data to create a BlogPost
  }
})

Input

Name Type Required
data BlogPostCreateInput | BlogPostUncheckedCreateInput Yes

Output

Type: BlogPost
Required: Yes
List: No

delete

Delete one BlogPost

// Delete one BlogPost
const BlogPost = await prisma.blogPost.delete({
  where: {
    // ... filter to delete one BlogPost
  }
})

Input

Name Type Required
where BlogPostWhereUniqueInput Yes

Output

Type: BlogPost
Required: No
List: No

update

Update one BlogPost

// Update one BlogPost
const blogPost = await prisma.blogPost.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostUpdateInput | BlogPostUncheckedUpdateInput Yes
where BlogPostWhereUniqueInput Yes

Output

Type: BlogPost
Required: No
List: No

deleteMany

Delete zero or more BlogPost

// Delete a few BlogPost
const { count } = await prisma.blogPost.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BlogPost

const { count } = await prisma.blogPost.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostUpdateManyMutationInput | BlogPostUncheckedUpdateManyInput Yes
where BlogPostWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BlogPost

// Update or create a BlogPost
const blogPost = await prisma.blogPost.upsert({
  create: {
    // ... data to create a BlogPost
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BlogPost we want to update
  }
})

Input

Name Type Required
where BlogPostWhereUniqueInput Yes
create BlogPostCreateInput | BlogPostUncheckedCreateInput Yes
update BlogPostUpdateInput | BlogPostUncheckedUpdateInput Yes

Output

Type: BlogPost
Required: Yes
List: No

BlogPostTag

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
name String
  • -
Yes -
descriptor String?
  • -
No -
postArrowList BlogPostTagArrow[]
  • -
Yes -

Operations

findUnique

Find zero or one BlogPostTag

// Get one BlogPostTag
const blogPostTag = await prisma.blogPostTag.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostTagWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BlogPostTag

// Get one BlogPostTag
const blogPostTag = await prisma.blogPostTag.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostTagWhereInput No
orderBy BlogPostTagOrderByWithRelationInput[] | BlogPostTagOrderByWithRelationInput No
cursor BlogPostTagWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostTagScalarFieldEnum | BlogPostTagScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BlogPostTag

// Get all BlogPostTag
const BlogPostTag = await prisma.blogPostTag.findMany()
// Get first 10 BlogPostTag
const BlogPostTag = await prisma.blogPostTag.findMany({ take: 10 })

Input

Name Type Required
where BlogPostTagWhereInput No
orderBy BlogPostTagOrderByWithRelationInput[] | BlogPostTagOrderByWithRelationInput No
cursor BlogPostTagWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostTagScalarFieldEnum | BlogPostTagScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BlogPostTag

// Create one BlogPostTag
const BlogPostTag = await prisma.blogPostTag.create({
  data: {
    // ... data to create a BlogPostTag
  }
})

Input

Name Type Required
data BlogPostTagCreateInput | BlogPostTagUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BlogPostTag

// Delete one BlogPostTag
const BlogPostTag = await prisma.blogPostTag.delete({
  where: {
    // ... filter to delete one BlogPostTag
  }
})

Input

Name Type Required
where BlogPostTagWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BlogPostTag

// Update one BlogPostTag
const blogPostTag = await prisma.blogPostTag.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostTagUpdateInput | BlogPostTagUncheckedUpdateInput Yes
where BlogPostTagWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BlogPostTag

// Delete a few BlogPostTag
const { count } = await prisma.blogPostTag.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostTagWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BlogPostTag

const { count } = await prisma.blogPostTag.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostTagUpdateManyMutationInput | BlogPostTagUncheckedUpdateManyInput Yes
where BlogPostTagWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BlogPostTag

// Update or create a BlogPostTag
const blogPostTag = await prisma.blogPostTag.upsert({
  create: {
    // ... data to create a BlogPostTag
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BlogPostTag we want to update
  }
})

Input

Name Type Required
where BlogPostTagWhereUniqueInput Yes
create BlogPostTagCreateInput | BlogPostTagUncheckedCreateInput Yes
update BlogPostTagUpdateInput | BlogPostTagUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BlogPostTagArrow

Name Value
@@unique
  • postId
  • tagId
@@index
  • postId
  • tagId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
postId String
  • -
Yes -
tagId String
  • -
Yes -
post BlogPost
  • -
Yes -
tag BlogPostTag
  • -
Yes -

Operations

findUnique

Find zero or one BlogPostTagArrow

// Get one BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostTagArrowWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BlogPostTagArrow

// Get one BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostTagArrowWhereInput No
orderBy BlogPostTagArrowOrderByWithRelationInput[] | BlogPostTagArrowOrderByWithRelationInput No
cursor BlogPostTagArrowWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostTagArrowScalarFieldEnum | BlogPostTagArrowScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BlogPostTagArrow

// Get all BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.findMany()
// Get first 10 BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.findMany({ take: 10 })

Input

Name Type Required
where BlogPostTagArrowWhereInput No
orderBy BlogPostTagArrowOrderByWithRelationInput[] | BlogPostTagArrowOrderByWithRelationInput No
cursor BlogPostTagArrowWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostTagArrowScalarFieldEnum | BlogPostTagArrowScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BlogPostTagArrow

// Create one BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.create({
  data: {
    // ... data to create a BlogPostTagArrow
  }
})

Input

Name Type Required
data BlogPostTagArrowCreateInput | BlogPostTagArrowUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BlogPostTagArrow

// Delete one BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.delete({
  where: {
    // ... filter to delete one BlogPostTagArrow
  }
})

Input

Name Type Required
where BlogPostTagArrowWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BlogPostTagArrow

// Update one BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostTagArrowUpdateInput | BlogPostTagArrowUncheckedUpdateInput Yes
where BlogPostTagArrowWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BlogPostTagArrow

// Delete a few BlogPostTagArrow
const { count } = await prisma.blogPostTagArrow.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostTagArrowWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BlogPostTagArrow

const { count } = await prisma.blogPostTagArrow.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostTagArrowUpdateManyMutationInput | BlogPostTagArrowUncheckedUpdateManyInput Yes
where BlogPostTagArrowWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BlogPostTagArrow

// Update or create a BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.upsert({
  create: {
    // ... data to create a BlogPostTagArrow
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BlogPostTagArrow we want to update
  }
})

Input

Name Type Required
where BlogPostTagArrowWhereUniqueInput Yes
create BlogPostTagArrowCreateInput | BlogPostTagArrowUncheckedCreateInput Yes
update BlogPostTagArrowUpdateInput | BlogPostTagArrowUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BlogPostAuthor

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
name String
  • -
Yes -
blogPostList BlogPost[]
  • -
Yes -

Operations

findUnique

Find zero or one BlogPostAuthor

// Get one BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostAuthorWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BlogPostAuthor

// Get one BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostAuthorWhereInput No
orderBy BlogPostAuthorOrderByWithRelationInput[] | BlogPostAuthorOrderByWithRelationInput No
cursor BlogPostAuthorWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostAuthorScalarFieldEnum | BlogPostAuthorScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BlogPostAuthor

// Get all BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.findMany()
// Get first 10 BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.findMany({ take: 10 })

Input

Name Type Required
where BlogPostAuthorWhereInput No
orderBy BlogPostAuthorOrderByWithRelationInput[] | BlogPostAuthorOrderByWithRelationInput No
cursor BlogPostAuthorWhereUniqueInput No
take Int No
skip Int No
distinct BlogPostAuthorScalarFieldEnum | BlogPostAuthorScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BlogPostAuthor

// Create one BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.create({
  data: {
    // ... data to create a BlogPostAuthor
  }
})

Input

Name Type Required
data BlogPostAuthorCreateInput | BlogPostAuthorUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BlogPostAuthor

// Delete one BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.delete({
  where: {
    // ... filter to delete one BlogPostAuthor
  }
})

Input

Name Type Required
where BlogPostAuthorWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BlogPostAuthor

// Update one BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostAuthorUpdateInput | BlogPostAuthorUncheckedUpdateInput Yes
where BlogPostAuthorWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BlogPostAuthor

// Delete a few BlogPostAuthor
const { count } = await prisma.blogPostAuthor.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlogPostAuthorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BlogPostAuthor

const { count } = await prisma.blogPostAuthor.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlogPostAuthorUpdateManyMutationInput | BlogPostAuthorUncheckedUpdateManyInput Yes
where BlogPostAuthorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BlogPostAuthor

// Update or create a BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.upsert({
  create: {
    // ... data to create a BlogPostAuthor
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BlogPostAuthor we want to update
  }
})

Input

Name Type Required
where BlogPostAuthorWhereUniqueInput Yes
create BlogPostAuthorCreateInput | BlogPostAuthorUncheckedCreateInput Yes
update BlogPostAuthorUpdateInput | BlogPostAuthorUncheckedUpdateInput Yes

Output

Required: Yes
List: No

SpaceTimeCoordinates

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
latitude Float
  • -
Yes -
longitude Float
  • -
Yes -
startTime Float
  • -
Yes -
pauseTime Float?
  • -
No -
stopTime Float
  • -
Yes -
timezone String
  • -
Yes -
blogPostId String
  • -
Yes -
BlogPost BlogPost?
  • -
No -

Operations

findUnique

Find zero or one SpaceTimeCoordinates

// Get one SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SpaceTimeCoordinatesWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SpaceTimeCoordinates

// Get one SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SpaceTimeCoordinatesWhereInput No
orderBy SpaceTimeCoordinatesOrderByWithRelationInput[] | SpaceTimeCoordinatesOrderByWithRelationInput No
cursor SpaceTimeCoordinatesWhereUniqueInput No
take Int No
skip Int No
distinct SpaceTimeCoordinatesScalarFieldEnum | SpaceTimeCoordinatesScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SpaceTimeCoordinates

// Get all SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.findMany()
// Get first 10 SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.findMany({ take: 10 })

Input

Name Type Required
where SpaceTimeCoordinatesWhereInput No
orderBy SpaceTimeCoordinatesOrderByWithRelationInput[] | SpaceTimeCoordinatesOrderByWithRelationInput No
cursor SpaceTimeCoordinatesWhereUniqueInput No
take Int No
skip Int No
distinct SpaceTimeCoordinatesScalarFieldEnum | SpaceTimeCoordinatesScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SpaceTimeCoordinates

// Create one SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.create({
  data: {
    // ... data to create a SpaceTimeCoordinates
  }
})

Input

Name Type Required
data SpaceTimeCoordinatesCreateInput | SpaceTimeCoordinatesUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SpaceTimeCoordinates

// Delete one SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.delete({
  where: {
    // ... filter to delete one SpaceTimeCoordinates
  }
})

Input

Name Type Required
where SpaceTimeCoordinatesWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SpaceTimeCoordinates

// Update one SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SpaceTimeCoordinatesUpdateInput | SpaceTimeCoordinatesUncheckedUpdateInput Yes
where SpaceTimeCoordinatesWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SpaceTimeCoordinates

// Delete a few SpaceTimeCoordinates
const { count } = await prisma.spaceTimeCoordinates.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SpaceTimeCoordinatesWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SpaceTimeCoordinates

const { count } = await prisma.spaceTimeCoordinates.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SpaceTimeCoordinatesUpdateManyMutationInput | SpaceTimeCoordinatesUncheckedUpdateManyInput Yes
where SpaceTimeCoordinatesWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SpaceTimeCoordinates

// Update or create a SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.upsert({
  create: {
    // ... data to create a SpaceTimeCoordinates
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SpaceTimeCoordinates we want to update
  }
})

Input

Name Type Required
where SpaceTimeCoordinatesWhereUniqueInput Yes
create SpaceTimeCoordinatesCreateInput | SpaceTimeCoordinatesUncheckedCreateInput Yes
update SpaceTimeCoordinatesUpdateInput | SpaceTimeCoordinatesUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BudgetEntry

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
serviceId String
  • -
Yes -
cost Float
  • -
Yes -
discount Float
  • -
Yes -
promotion Float
  • -
Yes -
subtotal Float
  • -
Yes -
percentChange Float
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
budgetId String
  • -
Yes -
budget Budget
  • -
Yes -
service BudgetService
  • -
Yes -

Operations

findUnique

Find zero or one BudgetEntry

// Get one BudgetEntry
const budgetEntry = await prisma.budgetEntry.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetEntryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BudgetEntry

// Get one BudgetEntry
const budgetEntry = await prisma.budgetEntry.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetEntryWhereInput No
orderBy BudgetEntryOrderByWithRelationInput[] | BudgetEntryOrderByWithRelationInput No
cursor BudgetEntryWhereUniqueInput No
take Int No
skip Int No
distinct BudgetEntryScalarFieldEnum | BudgetEntryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BudgetEntry

// Get all BudgetEntry
const BudgetEntry = await prisma.budgetEntry.findMany()
// Get first 10 BudgetEntry
const BudgetEntry = await prisma.budgetEntry.findMany({ take: 10 })

Input

Name Type Required
where BudgetEntryWhereInput No
orderBy BudgetEntryOrderByWithRelationInput[] | BudgetEntryOrderByWithRelationInput No
cursor BudgetEntryWhereUniqueInput No
take Int No
skip Int No
distinct BudgetEntryScalarFieldEnum | BudgetEntryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BudgetEntry

// Create one BudgetEntry
const BudgetEntry = await prisma.budgetEntry.create({
  data: {
    // ... data to create a BudgetEntry
  }
})

Input

Name Type Required
data BudgetEntryCreateInput | BudgetEntryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BudgetEntry

// Delete one BudgetEntry
const BudgetEntry = await prisma.budgetEntry.delete({
  where: {
    // ... filter to delete one BudgetEntry
  }
})

Input

Name Type Required
where BudgetEntryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BudgetEntry

// Update one BudgetEntry
const budgetEntry = await prisma.budgetEntry.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetEntryUpdateInput | BudgetEntryUncheckedUpdateInput Yes
where BudgetEntryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BudgetEntry

// Delete a few BudgetEntry
const { count } = await prisma.budgetEntry.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetEntryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BudgetEntry

const { count } = await prisma.budgetEntry.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetEntryUpdateManyMutationInput | BudgetEntryUncheckedUpdateManyInput Yes
where BudgetEntryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BudgetEntry

// Update or create a BudgetEntry
const budgetEntry = await prisma.budgetEntry.upsert({
  create: {
    // ... data to create a BudgetEntry
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BudgetEntry we want to update
  }
})

Input

Name Type Required
where BudgetEntryWhereUniqueInput Yes
create BudgetEntryCreateInput | BudgetEntryUncheckedCreateInput Yes
update BudgetEntryUpdateInput | BudgetEntryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BudgetService

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
description String
  • -
Yes -
category String
  • -
Yes -
metadata Json
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
entryList BudgetEntry[]
  • -
Yes -

Operations

findUnique

Find zero or one BudgetService

// Get one BudgetService
const budgetService = await prisma.budgetService.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetServiceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BudgetService

// Get one BudgetService
const budgetService = await prisma.budgetService.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetServiceWhereInput No
orderBy BudgetServiceOrderByWithRelationInput[] | BudgetServiceOrderByWithRelationInput No
cursor BudgetServiceWhereUniqueInput No
take Int No
skip Int No
distinct BudgetServiceScalarFieldEnum | BudgetServiceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BudgetService

// Get all BudgetService
const BudgetService = await prisma.budgetService.findMany()
// Get first 10 BudgetService
const BudgetService = await prisma.budgetService.findMany({ take: 10 })

Input

Name Type Required
where BudgetServiceWhereInput No
orderBy BudgetServiceOrderByWithRelationInput[] | BudgetServiceOrderByWithRelationInput No
cursor BudgetServiceWhereUniqueInput No
take Int No
skip Int No
distinct BudgetServiceScalarFieldEnum | BudgetServiceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BudgetService

// Create one BudgetService
const BudgetService = await prisma.budgetService.create({
  data: {
    // ... data to create a BudgetService
  }
})

Input

Name Type Required
data BudgetServiceCreateInput | BudgetServiceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BudgetService

// Delete one BudgetService
const BudgetService = await prisma.budgetService.delete({
  where: {
    // ... filter to delete one BudgetService
  }
})

Input

Name Type Required
where BudgetServiceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BudgetService

// Update one BudgetService
const budgetService = await prisma.budgetService.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetServiceUpdateInput | BudgetServiceUncheckedUpdateInput Yes
where BudgetServiceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BudgetService

// Delete a few BudgetService
const { count } = await prisma.budgetService.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetServiceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BudgetService

const { count } = await prisma.budgetService.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetServiceUpdateManyMutationInput | BudgetServiceUncheckedUpdateManyInput Yes
where BudgetServiceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BudgetService

// Update or create a BudgetService
const budgetService = await prisma.budgetService.upsert({
  create: {
    // ... data to create a BudgetService
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BudgetService we want to update
  }
})

Input

Name Type Required
where BudgetServiceWhereUniqueInput Yes
create BudgetServiceCreateInput | BudgetServiceUncheckedCreateInput Yes
update BudgetServiceUpdateInput | BudgetServiceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Budget

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
fiscalYear Int
  • -
Yes -
reportId String?
  • -
No -
userList BudgetBudUser[]
  • -
Yes -
entryList BudgetEntry[]
  • -
Yes -
report Report?
  • -
No -

Operations

findUnique

Find zero or one Budget

// Get one Budget
const budget = await prisma.budget.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetWhereUniqueInput Yes

Output

Type: Budget
Required: No
List: No

findFirst

Find first Budget

// Get one Budget
const budget = await prisma.budget.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetWhereInput No
orderBy BudgetOrderByWithRelationInput[] | BudgetOrderByWithRelationInput No
cursor BudgetWhereUniqueInput No
take Int No
skip Int No
distinct BudgetScalarFieldEnum | BudgetScalarFieldEnum[] No

Output

Type: Budget
Required: No
List: No

findMany

Find zero or more Budget

// Get all Budget
const Budget = await prisma.budget.findMany()
// Get first 10 Budget
const Budget = await prisma.budget.findMany({ take: 10 })

Input

Name Type Required
where BudgetWhereInput No
orderBy BudgetOrderByWithRelationInput[] | BudgetOrderByWithRelationInput No
cursor BudgetWhereUniqueInput No
take Int No
skip Int No
distinct BudgetScalarFieldEnum | BudgetScalarFieldEnum[] No

Output

Type: Budget
Required: Yes
List: Yes

create

Create one Budget

// Create one Budget
const Budget = await prisma.budget.create({
  data: {
    // ... data to create a Budget
  }
})

Input

Name Type Required
data BudgetCreateInput | BudgetUncheckedCreateInput Yes

Output

Type: Budget
Required: Yes
List: No

delete

Delete one Budget

// Delete one Budget
const Budget = await prisma.budget.delete({
  where: {
    // ... filter to delete one Budget
  }
})

Input

Name Type Required
where BudgetWhereUniqueInput Yes

Output

Type: Budget
Required: No
List: No

update

Update one Budget

// Update one Budget
const budget = await prisma.budget.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetUpdateInput | BudgetUncheckedUpdateInput Yes
where BudgetWhereUniqueInput Yes

Output

Type: Budget
Required: No
List: No

deleteMany

Delete zero or more Budget

// Delete a few Budget
const { count } = await prisma.budget.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Budget

const { count } = await prisma.budget.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetUpdateManyMutationInput | BudgetUncheckedUpdateManyInput Yes
where BudgetWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Budget

// Update or create a Budget
const budget = await prisma.budget.upsert({
  create: {
    // ... data to create a Budget
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Budget we want to update
  }
})

Input

Name Type Required
where BudgetWhereUniqueInput Yes
create BudgetCreateInput | BudgetUncheckedCreateInput Yes
update BudgetUpdateInput | BudgetUncheckedUpdateInput Yes

Output

Type: Budget
Required: Yes
List: No

Report

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
budgetId String
  • @unique
Yes -
totalCost Float
  • -
Yes -
totalDiscount Float
  • -
Yes -
totalPromotion Float
  • -
Yes -
totalSubtotal Float
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
budget Budget
  • -
Yes -

Operations

findUnique

Find zero or one Report

// Get one Report
const report = await prisma.report.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ReportWhereUniqueInput Yes

Output

Type: Report
Required: No
List: No

findFirst

Find first Report

// Get one Report
const report = await prisma.report.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ReportWhereInput No
orderBy ReportOrderByWithRelationInput[] | ReportOrderByWithRelationInput No
cursor ReportWhereUniqueInput No
take Int No
skip Int No
distinct ReportScalarFieldEnum | ReportScalarFieldEnum[] No

Output

Type: Report
Required: No
List: No

findMany

Find zero or more Report

// Get all Report
const Report = await prisma.report.findMany()
// Get first 10 Report
const Report = await prisma.report.findMany({ take: 10 })

Input

Name Type Required
where ReportWhereInput No
orderBy ReportOrderByWithRelationInput[] | ReportOrderByWithRelationInput No
cursor ReportWhereUniqueInput No
take Int No
skip Int No
distinct ReportScalarFieldEnum | ReportScalarFieldEnum[] No

Output

Type: Report
Required: Yes
List: Yes

create

Create one Report

// Create one Report
const Report = await prisma.report.create({
  data: {
    // ... data to create a Report
  }
})

Input

Name Type Required
data ReportCreateInput | ReportUncheckedCreateInput Yes

Output

Type: Report
Required: Yes
List: No

delete

Delete one Report

// Delete one Report
const Report = await prisma.report.delete({
  where: {
    // ... filter to delete one Report
  }
})

Input

Name Type Required
where ReportWhereUniqueInput Yes

Output

Type: Report
Required: No
List: No

update

Update one Report

// Update one Report
const report = await prisma.report.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ReportUpdateInput | ReportUncheckedUpdateInput Yes
where ReportWhereUniqueInput Yes

Output

Type: Report
Required: No
List: No

deleteMany

Delete zero or more Report

// Delete a few Report
const { count } = await prisma.report.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ReportWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Report

const { count } = await prisma.report.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ReportUpdateManyMutationInput | ReportUncheckedUpdateManyInput Yes
where ReportWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Report

// Update or create a Report
const report = await prisma.report.upsert({
  create: {
    // ... data to create a Report
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Report we want to update
  }
})

Input

Name Type Required
where ReportWhereUniqueInput Yes
create ReportCreateInput | ReportUncheckedCreateInput Yes
update ReportUpdateInput | ReportUncheckedUpdateInput Yes

Output

Type: Report
Required: Yes
List: No

BudUser

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
name String
  • -
Yes -
email String
  • @unique
Yes -
password String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
eventList BudEvent[]
  • -
Yes -
budgetList BudgetBudUser[]
  • -
Yes -

Operations

findUnique

Find zero or one BudUser

// Get one BudUser
const budUser = await prisma.budUser.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudUserWhereUniqueInput Yes

Output

Type: BudUser
Required: No
List: No

findFirst

Find first BudUser

// Get one BudUser
const budUser = await prisma.budUser.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudUserWhereInput No
orderBy BudUserOrderByWithRelationInput[] | BudUserOrderByWithRelationInput No
cursor BudUserWhereUniqueInput No
take Int No
skip Int No
distinct BudUserScalarFieldEnum | BudUserScalarFieldEnum[] No

Output

Type: BudUser
Required: No
List: No

findMany

Find zero or more BudUser

// Get all BudUser
const BudUser = await prisma.budUser.findMany()
// Get first 10 BudUser
const BudUser = await prisma.budUser.findMany({ take: 10 })

Input

Name Type Required
where BudUserWhereInput No
orderBy BudUserOrderByWithRelationInput[] | BudUserOrderByWithRelationInput No
cursor BudUserWhereUniqueInput No
take Int No
skip Int No
distinct BudUserScalarFieldEnum | BudUserScalarFieldEnum[] No

Output

Type: BudUser
Required: Yes
List: Yes

create

Create one BudUser

// Create one BudUser
const BudUser = await prisma.budUser.create({
  data: {
    // ... data to create a BudUser
  }
})

Input

Name Type Required
data BudUserCreateInput | BudUserUncheckedCreateInput Yes

Output

Type: BudUser
Required: Yes
List: No

delete

Delete one BudUser

// Delete one BudUser
const BudUser = await prisma.budUser.delete({
  where: {
    // ... filter to delete one BudUser
  }
})

Input

Name Type Required
where BudUserWhereUniqueInput Yes

Output

Type: BudUser
Required: No
List: No

update

Update one BudUser

// Update one BudUser
const budUser = await prisma.budUser.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudUserUpdateInput | BudUserUncheckedUpdateInput Yes
where BudUserWhereUniqueInput Yes

Output

Type: BudUser
Required: No
List: No

deleteMany

Delete zero or more BudUser

// Delete a few BudUser
const { count } = await prisma.budUser.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudUserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BudUser

const { count } = await prisma.budUser.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudUserUpdateManyMutationInput | BudUserUncheckedUpdateManyInput Yes
where BudUserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BudUser

// Update or create a BudUser
const budUser = await prisma.budUser.upsert({
  create: {
    // ... data to create a BudUser
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BudUser we want to update
  }
})

Input

Name Type Required
where BudUserWhereUniqueInput Yes
create BudUserCreateInput | BudUserUncheckedCreateInput Yes
update BudUserUpdateInput | BudUserUncheckedUpdateInput Yes

Output

Type: BudUser
Required: Yes
List: No

BudgetBudUser

Name Value
@@unique
  • userId
  • budgetId
@@index
  • userId
  • budgetId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
userId String
  • -
Yes -
budgetId String
  • -
Yes -
role String
  • -
Yes -
ability String
  • -
Yes -
category String
  • -
Yes -
budget Budget
  • -
Yes -
user BudUser
  • -
Yes -

Operations

findUnique

Find zero or one BudgetBudUser

// Get one BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetBudUserWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BudgetBudUser

// Get one BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetBudUserWhereInput No
orderBy BudgetBudUserOrderByWithRelationInput[] | BudgetBudUserOrderByWithRelationInput No
cursor BudgetBudUserWhereUniqueInput No
take Int No
skip Int No
distinct BudgetBudUserScalarFieldEnum | BudgetBudUserScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BudgetBudUser

// Get all BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.findMany()
// Get first 10 BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.findMany({ take: 10 })

Input

Name Type Required
where BudgetBudUserWhereInput No
orderBy BudgetBudUserOrderByWithRelationInput[] | BudgetBudUserOrderByWithRelationInput No
cursor BudgetBudUserWhereUniqueInput No
take Int No
skip Int No
distinct BudgetBudUserScalarFieldEnum | BudgetBudUserScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BudgetBudUser

// Create one BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.create({
  data: {
    // ... data to create a BudgetBudUser
  }
})

Input

Name Type Required
data BudgetBudUserCreateInput | BudgetBudUserUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BudgetBudUser

// Delete one BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.delete({
  where: {
    // ... filter to delete one BudgetBudUser
  }
})

Input

Name Type Required
where BudgetBudUserWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BudgetBudUser

// Update one BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetBudUserUpdateInput | BudgetBudUserUncheckedUpdateInput Yes
where BudgetBudUserWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BudgetBudUser

// Delete a few BudgetBudUser
const { count } = await prisma.budgetBudUser.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudgetBudUserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BudgetBudUser

const { count } = await prisma.budgetBudUser.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudgetBudUserUpdateManyMutationInput | BudgetBudUserUncheckedUpdateManyInput Yes
where BudgetBudUserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BudgetBudUser

// Update or create a BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.upsert({
  create: {
    // ... data to create a BudgetBudUser
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BudgetBudUser we want to update
  }
})

Input

Name Type Required
where BudgetBudUserWhereUniqueInput Yes
create BudgetBudUserCreateInput | BudgetBudUserUncheckedCreateInput Yes
update BudgetBudUserUpdateInput | BudgetBudUserUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BudEvent

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(dbgenerated(gen_random_uuid()))
Yes -
type String
  • -
Yes -
description String
  • -
Yes -
categoryList String[]
  • -
Yes -
metadata Json
  • -
Yes -
budUserId String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
budUser BudUser
  • -
Yes -

Operations

findUnique

Find zero or one BudEvent

// Get one BudEvent
const budEvent = await prisma.budEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudEventWhereUniqueInput Yes

Output

Type: BudEvent
Required: No
List: No

findFirst

Find first BudEvent

// Get one BudEvent
const budEvent = await prisma.budEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudEventWhereInput No
orderBy BudEventOrderByWithRelationInput[] | BudEventOrderByWithRelationInput No
cursor BudEventWhereUniqueInput No
take Int No
skip Int No
distinct BudEventScalarFieldEnum | BudEventScalarFieldEnum[] No

Output

Type: BudEvent
Required: No
List: No

findMany

Find zero or more BudEvent

// Get all BudEvent
const BudEvent = await prisma.budEvent.findMany()
// Get first 10 BudEvent
const BudEvent = await prisma.budEvent.findMany({ take: 10 })

Input

Name Type Required
where BudEventWhereInput No
orderBy BudEventOrderByWithRelationInput[] | BudEventOrderByWithRelationInput No
cursor BudEventWhereUniqueInput No
take Int No
skip Int No
distinct BudEventScalarFieldEnum | BudEventScalarFieldEnum[] No

Output

Type: BudEvent
Required: Yes
List: Yes

create

Create one BudEvent

// Create one BudEvent
const BudEvent = await prisma.budEvent.create({
  data: {
    // ... data to create a BudEvent
  }
})

Input

Name Type Required
data BudEventCreateInput | BudEventUncheckedCreateInput Yes

Output

Type: BudEvent
Required: Yes
List: No

delete

Delete one BudEvent

// Delete one BudEvent
const BudEvent = await prisma.budEvent.delete({
  where: {
    // ... filter to delete one BudEvent
  }
})

Input

Name Type Required
where BudEventWhereUniqueInput Yes

Output

Type: BudEvent
Required: No
List: No

update

Update one BudEvent

// Update one BudEvent
const budEvent = await prisma.budEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudEventUpdateInput | BudEventUncheckedUpdateInput Yes
where BudEventWhereUniqueInput Yes

Output

Type: BudEvent
Required: No
List: No

deleteMany

Delete zero or more BudEvent

// Delete a few BudEvent
const { count } = await prisma.budEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BudEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BudEvent

const { count } = await prisma.budEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BudEventUpdateManyMutationInput | BudEventUncheckedUpdateManyInput Yes
where BudEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BudEvent

// Update or create a BudEvent
const budEvent = await prisma.budEvent.upsert({
  create: {
    // ... data to create a BudEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BudEvent we want to update
  }
})

Input

Name Type Required
where BudEventWhereUniqueInput Yes
create BudEventCreateInput | BudEventUncheckedCreateInput Yes
update BudEventUpdateInput | BudEventUncheckedUpdateInput Yes

Output

Type: BudEvent
Required: Yes
List: No

Types

Input Types

PrincipalWhereInput

Name Type Nullable
AND PrincipalWhereInput | PrincipalWhereInput[] No
OR PrincipalWhereInput[] No
NOT PrincipalWhereInput | PrincipalWhereInput[] No
id UuidFilter | String No
username StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringFilter | String No
password StringNullableFilter | String | Null Yes
phoneCode IntNullableFilter | Int | Null Yes
phoneNumber StringNullableFilter | String | Null Yes
streetName StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
areaCode StringNullableFilter | String | Null Yes
country EnumCountryFilter | Country No
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
payerType EnumDiscountTypeFilter | DiscountType No
image StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
createdPrincipals PrincipalListRelationFilter No
updatedPrincipals PrincipalListRelationFilter No
createdPayments PaymentListRelationFilter No
updatedPayments PaymentListRelationFilter No
createdAppointments AppointmentListRelationFilter No
updatedAppointments AppointmentListRelationFilter No
createdEquipments EquipmentListRelationFilter No
updatedEquipments EquipmentListRelationFilter No
createdPatients PatientListRelationFilter No
updatedPatients PatientListRelationFilter No
createdServices ServiceListRelationFilter No
updatedServices ServiceListRelationFilter No
accounts AccountListRelationFilter No
authenticator AuthenticatorListRelationFilter No
receivedPaymentList PaymentListRelationFilter No
sessions SessionListRelationFilter No

PrincipalOrderByWithRelationInput

Name Type Nullable
id SortOrder No
username SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder No
password SortOrder | SortOrderInput No
phoneCode SortOrder | SortOrderInput No
phoneNumber SortOrder | SortOrderInput No
streetName SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
areaCode SortOrder | SortOrderInput No
country SortOrder No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
payerType SortOrder No
image SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
creator PrincipalOrderByWithRelationInput No
updater PrincipalOrderByWithRelationInput No
createdPrincipals PrincipalOrderByRelationAggregateInput No
updatedPrincipals PrincipalOrderByRelationAggregateInput No
createdPayments PaymentOrderByRelationAggregateInput No
updatedPayments PaymentOrderByRelationAggregateInput No
createdAppointments AppointmentOrderByRelationAggregateInput No
updatedAppointments AppointmentOrderByRelationAggregateInput No
createdEquipments EquipmentOrderByRelationAggregateInput No
updatedEquipments EquipmentOrderByRelationAggregateInput No
createdPatients PatientOrderByRelationAggregateInput No
updatedPatients PatientOrderByRelationAggregateInput No
createdServices ServiceOrderByRelationAggregateInput No
updatedServices ServiceOrderByRelationAggregateInput No
accounts AccountOrderByRelationAggregateInput No
authenticator AuthenticatorOrderByRelationAggregateInput No
receivedPaymentList PaymentOrderByRelationAggregateInput No
sessions SessionOrderByRelationAggregateInput No
_relevance PrincipalOrderByRelevanceInput No

PrincipalWhereUniqueInput

Name Type Nullable
id String No
username String No
email String No
AND PrincipalWhereInput | PrincipalWhereInput[] No
OR PrincipalWhereInput[] No
NOT PrincipalWhereInput | PrincipalWhereInput[] No
firstName StringNullableFilter | String | Null Yes
lastName StringFilter | String No
password StringNullableFilter | String | Null Yes
phoneCode IntNullableFilter | Int | Null Yes
phoneNumber StringNullableFilter | String | Null Yes
streetName StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
areaCode StringNullableFilter | String | Null Yes
country EnumCountryFilter | Country No
emailVerified DateTimeNullableFilter | DateTime | Null Yes
payerType EnumDiscountTypeFilter | DiscountType No
image StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
createdPrincipals PrincipalListRelationFilter No
updatedPrincipals PrincipalListRelationFilter No
createdPayments PaymentListRelationFilter No
updatedPayments PaymentListRelationFilter No
createdAppointments AppointmentListRelationFilter No
updatedAppointments AppointmentListRelationFilter No
createdEquipments EquipmentListRelationFilter No
updatedEquipments EquipmentListRelationFilter No
createdPatients PatientListRelationFilter No
updatedPatients PatientListRelationFilter No
createdServices ServiceListRelationFilter No
updatedServices ServiceListRelationFilter No
accounts AccountListRelationFilter No
authenticator AuthenticatorListRelationFilter No
receivedPaymentList PaymentListRelationFilter No
sessions SessionListRelationFilter No

PrincipalOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
username SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder No
password SortOrder | SortOrderInput No
phoneCode SortOrder | SortOrderInput No
phoneNumber SortOrder | SortOrderInput No
streetName SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
areaCode SortOrder | SortOrderInput No
country SortOrder No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
payerType SortOrder No
image SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
_count PrincipalCountOrderByAggregateInput No
_avg PrincipalAvgOrderByAggregateInput No
_max PrincipalMaxOrderByAggregateInput No
_min PrincipalMinOrderByAggregateInput No
_sum PrincipalSumOrderByAggregateInput No

PrincipalScalarWhereWithAggregatesInput

Name Type Nullable
AND PrincipalScalarWhereWithAggregatesInput | PrincipalScalarWhereWithAggregatesInput[] No
OR PrincipalScalarWhereWithAggregatesInput[] No
NOT PrincipalScalarWhereWithAggregatesInput | PrincipalScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
username StringWithAggregatesFilter | String No
firstName StringNullableWithAggregatesFilter | String | Null Yes
lastName StringWithAggregatesFilter | String No
password StringNullableWithAggregatesFilter | String | Null Yes
phoneCode IntNullableWithAggregatesFilter | Int | Null Yes
phoneNumber StringNullableWithAggregatesFilter | String | Null Yes
streetName StringNullableWithAggregatesFilter | String | Null Yes
city StringNullableWithAggregatesFilter | String | Null Yes
areaCode StringNullableWithAggregatesFilter | String | Null Yes
country EnumCountryWithAggregatesFilter | Country No
email StringNullableWithAggregatesFilter | String | Null Yes
emailVerified DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
payerType EnumDiscountTypeWithAggregatesFilter | DiscountType No
image StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
createdBy UuidNullableWithAggregatesFilter | String | Null Yes
updatedBy UuidNullableWithAggregatesFilter | String | Null Yes

AccountWhereInput

Name Type Nullable
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
userId UuidFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
user PrincipalRelationFilter | PrincipalWhereInput No

AccountOrderByWithRelationInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
token_type SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder | SortOrderInput No
session_state SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
user PrincipalOrderByWithRelationInput No
_relevance AccountOrderByRelevanceInput No

AccountWhereUniqueInput

Name Type Nullable
provider_providerAccountId AccountProviderProviderAccountIdCompoundUniqueInput No
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
userId UuidFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
user PrincipalRelationFilter | PrincipalWhereInput No

AccountOrderByWithAggregationInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
token_type SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder | SortOrderInput No
session_state SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
_count AccountCountOrderByAggregateInput No
_avg AccountAvgOrderByAggregateInput No
_max AccountMaxOrderByAggregateInput No
_min AccountMinOrderByAggregateInput No
_sum AccountSumOrderByAggregateInput No

AccountScalarWhereWithAggregatesInput

Name Type Nullable
AND AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
OR AccountScalarWhereWithAggregatesInput[] No
NOT AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
userId UuidWithAggregatesFilter | String No
type StringWithAggregatesFilter | String No
provider StringWithAggregatesFilter | String No
providerAccountId StringWithAggregatesFilter | String No
refresh_token StringNullableWithAggregatesFilter | String | Null Yes
access_token StringNullableWithAggregatesFilter | String | Null Yes
expires_at IntNullableWithAggregatesFilter | Int | Null Yes
token_type StringNullableWithAggregatesFilter | String | Null Yes
scope StringNullableWithAggregatesFilter | String | Null Yes
id_token StringNullableWithAggregatesFilter | String | Null Yes
session_state StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No

SessionWhereInput

Name Type Nullable
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
sessionToken StringFilter | String No
userId UuidFilter | String No
expiresAt DateTimeFilter | DateTime No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
user PrincipalRelationFilter | PrincipalWhereInput No

SessionOrderByWithRelationInput

Name Type Nullable
sessionToken SortOrder No
userId SortOrder No
expiresAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
user PrincipalOrderByWithRelationInput No
_relevance SessionOrderByRelevanceInput No

SessionWhereUniqueInput

Name Type Nullable
sessionToken String No
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
userId UuidFilter | String No
expiresAt DateTimeFilter | DateTime No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
user PrincipalRelationFilter | PrincipalWhereInput No

SessionOrderByWithAggregationInput

Name Type Nullable
sessionToken SortOrder No
userId SortOrder No
expiresAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count SessionCountOrderByAggregateInput No
_max SessionMaxOrderByAggregateInput No
_min SessionMinOrderByAggregateInput No


VerificationTokenWhereInput

Name Type Nullable
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
token StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithRelationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No
_relevance VerificationTokenOrderByRelevanceInput No

VerificationTokenWhereUniqueInput

Name Type Nullable
identifier_token VerificationTokenIdentifierTokenCompoundUniqueInput No
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
token StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithAggregationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No
_count VerificationTokenCountOrderByAggregateInput No
_max VerificationTokenMaxOrderByAggregateInput No
_min VerificationTokenMinOrderByAggregateInput No


AuthenticatorWhereInput

Name Type Nullable
AND AuthenticatorWhereInput | AuthenticatorWhereInput[] No
OR AuthenticatorWhereInput[] No
NOT AuthenticatorWhereInput | AuthenticatorWhereInput[] No
credentialID StringFilter | String No
userId UuidFilter | String No
providerAccountId StringFilter | String No
credentialPublicKey StringFilter | String No
counter IntFilter | Int No
credentialDeviceType StringFilter | String No
credentialBackedUp BoolFilter | Boolean No
transports StringNullableFilter | String | Null Yes
user PrincipalRelationFilter | PrincipalWhereInput No

AuthenticatorOrderByWithRelationInput

Name Type Nullable
credentialID SortOrder No
userId SortOrder No
providerAccountId SortOrder No
credentialPublicKey SortOrder No
counter SortOrder No
credentialDeviceType SortOrder No
credentialBackedUp SortOrder No
transports SortOrder | SortOrderInput No
user PrincipalOrderByWithRelationInput No
_relevance AuthenticatorOrderByRelevanceInput No

AuthenticatorWhereUniqueInput

Name Type Nullable
credentialID String No
userId_credentialID AuthenticatorUserIdCredentialIDCompoundUniqueInput No
AND AuthenticatorWhereInput | AuthenticatorWhereInput[] No
OR AuthenticatorWhereInput[] No
NOT AuthenticatorWhereInput | AuthenticatorWhereInput[] No
userId UuidFilter | String No
providerAccountId StringFilter | String No
credentialPublicKey StringFilter | String No
counter IntFilter | Int No
credentialDeviceType StringFilter | String No
credentialBackedUp BoolFilter | Boolean No
transports StringNullableFilter | String | Null Yes
user PrincipalRelationFilter | PrincipalWhereInput No

AuthenticatorOrderByWithAggregationInput

Name Type Nullable
credentialID SortOrder No
userId SortOrder No
providerAccountId SortOrder No
credentialPublicKey SortOrder No
counter SortOrder No
credentialDeviceType SortOrder No
credentialBackedUp SortOrder No
transports SortOrder | SortOrderInput No
_count AuthenticatorCountOrderByAggregateInput No
_avg AuthenticatorAvgOrderByAggregateInput No
_max AuthenticatorMaxOrderByAggregateInput No
_min AuthenticatorMinOrderByAggregateInput No
_sum AuthenticatorSumOrderByAggregateInput No

AuthenticatorScalarWhereWithAggregatesInput

Name Type Nullable
AND AuthenticatorScalarWhereWithAggregatesInput | AuthenticatorScalarWhereWithAggregatesInput[] No
OR AuthenticatorScalarWhereWithAggregatesInput[] No
NOT AuthenticatorScalarWhereWithAggregatesInput | AuthenticatorScalarWhereWithAggregatesInput[] No
credentialID StringWithAggregatesFilter | String No
userId UuidWithAggregatesFilter | String No
providerAccountId StringWithAggregatesFilter | String No
credentialPublicKey StringWithAggregatesFilter | String No
counter IntWithAggregatesFilter | Int No
credentialDeviceType StringWithAggregatesFilter | String No
credentialBackedUp BoolWithAggregatesFilter | Boolean No
transports StringNullableWithAggregatesFilter | String | Null Yes

PaymentWhereInput

Name Type Nullable
AND PaymentWhereInput | PaymentWhereInput[] No
OR PaymentWhereInput[] No
NOT PaymentWhereInput | PaymentWhereInput[] No
id UuidFilter | String No
payerId UuidFilter | String No
receiverId UuidFilter | String No
paymentMethod EnumPaymentMethodFilter | PaymentMethod No
totalPayableAmount IntFilter | Int No
discountApplied IntFilter | Int No
paidAmount IntFilter | Int No
reasonForVisit StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
payer PatientRelationFilter | PatientWhereInput No
receiver PrincipalRelationFilter | PrincipalWhereInput No
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

PaymentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
payerId SortOrder No
receiverId SortOrder No
paymentMethod SortOrder No
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No
reasonForVisit SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
payer PatientOrderByWithRelationInput No
receiver PrincipalOrderByWithRelationInput No
creator PrincipalOrderByWithRelationInput No
updater PrincipalOrderByWithRelationInput No
_relevance PaymentOrderByRelevanceInput No

PaymentWhereUniqueInput

Name Type Nullable
id String No
AND PaymentWhereInput | PaymentWhereInput[] No
OR PaymentWhereInput[] No
NOT PaymentWhereInput | PaymentWhereInput[] No
payerId UuidFilter | String No
receiverId UuidFilter | String No
paymentMethod EnumPaymentMethodFilter | PaymentMethod No
totalPayableAmount IntFilter | Int No
discountApplied IntFilter | Int No
paidAmount IntFilter | Int No
reasonForVisit StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
payer PatientRelationFilter | PatientWhereInput No
receiver PrincipalRelationFilter | PrincipalWhereInput No
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

PaymentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
payerId SortOrder No
receiverId SortOrder No
paymentMethod SortOrder No
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No
reasonForVisit SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
_count PaymentCountOrderByAggregateInput No
_avg PaymentAvgOrderByAggregateInput No
_max PaymentMaxOrderByAggregateInput No
_min PaymentMinOrderByAggregateInput No
_sum PaymentSumOrderByAggregateInput No

PaymentScalarWhereWithAggregatesInput

Name Type Nullable
AND PaymentScalarWhereWithAggregatesInput | PaymentScalarWhereWithAggregatesInput[] No
OR PaymentScalarWhereWithAggregatesInput[] No
NOT PaymentScalarWhereWithAggregatesInput | PaymentScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
payerId UuidWithAggregatesFilter | String No
receiverId UuidWithAggregatesFilter | String No
paymentMethod EnumPaymentMethodWithAggregatesFilter | PaymentMethod No
totalPayableAmount IntWithAggregatesFilter | Int No
discountApplied IntWithAggregatesFilter | Int No
paidAmount IntWithAggregatesFilter | Int No
reasonForVisit StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
createdBy UuidNullableWithAggregatesFilter | String | Null Yes
updatedBy UuidNullableWithAggregatesFilter | String | Null Yes

AppointmentWhereInput

Name Type Nullable
AND AppointmentWhereInput | AppointmentWhereInput[] No
OR AppointmentWhereInput[] No
NOT AppointmentWhereInput | AppointmentWhereInput[] No
id UuidFilter | String No
uuid UuidFilter | String No
date DateTimeFilter | DateTime No
startTime EnumTimeOfDayNullableFilter | TimeOfDay | Null Yes
endTime EnumTimeOfDayNullableFilter | TimeOfDay | Null Yes
voided BoolNullableFilter | Boolean | Null Yes
voidedBy StringNullableFilter | String | Null Yes
dateVoided DateTimeNullableFilter | DateTime | Null Yes
voidReason StringNullableFilter | String | Null Yes
appointmentTypeId UuidNullableFilter | String | Null Yes
patientId UuidFilter | String No
locationId UuidNullableFilter | String | Null Yes
providerId UuidNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
appointmentType AppointmentTypeNullableRelationFilter | AppointmentTypeWhereInput | Null Yes
location LocationNullableRelationFilter | LocationWhereInput | Null Yes
patient PatientRelationFilter | PatientWhereInput No
provider ProviderNullableRelationFilter | ProviderWhereInput | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

AppointmentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
date SortOrder No
startTime SortOrder | SortOrderInput No
endTime SortOrder | SortOrderInput No
voided SortOrder | SortOrderInput No
voidedBy SortOrder | SortOrderInput No
dateVoided SortOrder | SortOrderInput No
voidReason SortOrder | SortOrderInput No
appointmentTypeId SortOrder | SortOrderInput No
patientId SortOrder No
locationId SortOrder | SortOrderInput No
providerId SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
appointmentType AppointmentTypeOrderByWithRelationInput No
location LocationOrderByWithRelationInput No
patient PatientOrderByWithRelationInput No
provider ProviderOrderByWithRelationInput No
creator PrincipalOrderByWithRelationInput No
updater PrincipalOrderByWithRelationInput No
_relevance AppointmentOrderByRelevanceInput No

AppointmentWhereUniqueInput

Name Type Nullable
id String No
uuid String No
patientId_locationId_providerId AppointmentPatientIdLocationIdProviderIdCompoundUniqueInput No
AND AppointmentWhereInput | AppointmentWhereInput[] No
OR AppointmentWhereInput[] No
NOT AppointmentWhereInput | AppointmentWhereInput[] No
date DateTimeFilter | DateTime No
startTime EnumTimeOfDayNullableFilter | TimeOfDay | Null Yes
endTime EnumTimeOfDayNullableFilter | TimeOfDay | Null Yes
voided BoolNullableFilter | Boolean | Null Yes
voidedBy StringNullableFilter | String | Null Yes
dateVoided DateTimeNullableFilter | DateTime | Null Yes
voidReason StringNullableFilter | String | Null Yes
appointmentTypeId UuidNullableFilter | String | Null Yes
patientId UuidFilter | String No
locationId UuidNullableFilter | String | Null Yes
providerId UuidNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
appointmentType AppointmentTypeNullableRelationFilter | AppointmentTypeWhereInput | Null Yes
location LocationNullableRelationFilter | LocationWhereInput | Null Yes
patient PatientRelationFilter | PatientWhereInput No
provider ProviderNullableRelationFilter | ProviderWhereInput | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

AppointmentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
date SortOrder No
startTime SortOrder | SortOrderInput No
endTime SortOrder | SortOrderInput No
voided SortOrder | SortOrderInput No
voidedBy SortOrder | SortOrderInput No
dateVoided SortOrder | SortOrderInput No
voidReason SortOrder | SortOrderInput No
appointmentTypeId SortOrder | SortOrderInput No
patientId SortOrder No
locationId SortOrder | SortOrderInput No
providerId SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
_count AppointmentCountOrderByAggregateInput No
_max AppointmentMaxOrderByAggregateInput No
_min AppointmentMinOrderByAggregateInput No

AppointmentScalarWhereWithAggregatesInput

Name Type Nullable
AND AppointmentScalarWhereWithAggregatesInput | AppointmentScalarWhereWithAggregatesInput[] No
OR AppointmentScalarWhereWithAggregatesInput[] No
NOT AppointmentScalarWhereWithAggregatesInput | AppointmentScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid UuidWithAggregatesFilter | String No
date DateTimeWithAggregatesFilter | DateTime No
startTime EnumTimeOfDayNullableWithAggregatesFilter | TimeOfDay | Null Yes
endTime EnumTimeOfDayNullableWithAggregatesFilter | TimeOfDay | Null Yes
voided BoolNullableWithAggregatesFilter | Boolean | Null Yes
voidedBy StringNullableWithAggregatesFilter | String | Null Yes
dateVoided DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
voidReason StringNullableWithAggregatesFilter | String | Null Yes
appointmentTypeId UuidNullableWithAggregatesFilter | String | Null Yes
patientId UuidWithAggregatesFilter | String No
locationId UuidNullableWithAggregatesFilter | String | Null Yes
providerId UuidNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
createdBy UuidNullableWithAggregatesFilter | String | Null Yes
updatedBy UuidNullableWithAggregatesFilter | String | Null Yes

AppointmentTypeWhereInput

Name Type Nullable
AND AppointmentTypeWhereInput | AppointmentTypeWhereInput[] No
OR AppointmentTypeWhereInput[] No
NOT AppointmentTypeWhereInput | AppointmentTypeWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
duration IntFilter | Int No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
appointmentList AppointmentListRelationFilter No

AppointmentTypeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
duration SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
appointmentList AppointmentOrderByRelationAggregateInput No
_relevance AppointmentTypeOrderByRelevanceInput No

AppointmentTypeWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND AppointmentTypeWhereInput | AppointmentTypeWhereInput[] No
OR AppointmentTypeWhereInput[] No
NOT AppointmentTypeWhereInput | AppointmentTypeWhereInput[] No
name StringFilter | String No
description StringFilter | String No
duration IntFilter | Int No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
appointmentList AppointmentListRelationFilter No

AppointmentTypeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
duration SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count AppointmentTypeCountOrderByAggregateInput No
_avg AppointmentTypeAvgOrderByAggregateInput No
_max AppointmentTypeMaxOrderByAggregateInput No
_min AppointmentTypeMinOrderByAggregateInput No
_sum AppointmentTypeSumOrderByAggregateInput No


LocationWhereInput

Name Type Nullable
AND LocationWhereInput | LocationWhereInput[] No
OR LocationWhereInput[] No
NOT LocationWhereInput | LocationWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
address1 StringFilter | String No
address2 StringFilter | String No
city StringFilter | String No
stateProvince StringFilter | String No
country StringFilter | String No
postalCode StringFilter | String No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
appointmentList AppointmentListRelationFilter No
encounterList EncounterListRelationFilter No

LocationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
address1 SortOrder No
address2 SortOrder No
city SortOrder No
stateProvince SortOrder No
country SortOrder No
postalCode SortOrder No
latitude SortOrder No
longitude SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
appointmentList AppointmentOrderByRelationAggregateInput No
encounterList EncounterOrderByRelationAggregateInput No
_relevance LocationOrderByRelevanceInput No

LocationWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND LocationWhereInput | LocationWhereInput[] No
OR LocationWhereInput[] No
NOT LocationWhereInput | LocationWhereInput[] No
name StringFilter | String No
description StringFilter | String No
address1 StringFilter | String No
address2 StringFilter | String No
city StringFilter | String No
stateProvince StringFilter | String No
country StringFilter | String No
postalCode StringFilter | String No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
appointmentList AppointmentListRelationFilter No
encounterList EncounterListRelationFilter No

LocationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
address1 SortOrder No
address2 SortOrder No
city SortOrder No
stateProvince SortOrder No
country SortOrder No
postalCode SortOrder No
latitude SortOrder No
longitude SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count LocationCountOrderByAggregateInput No
_avg LocationAvgOrderByAggregateInput No
_max LocationMaxOrderByAggregateInput No
_min LocationMinOrderByAggregateInput No
_sum LocationSumOrderByAggregateInput No

LocationScalarWhereWithAggregatesInput

Name Type Nullable
AND LocationScalarWhereWithAggregatesInput | LocationScalarWhereWithAggregatesInput[] No
OR LocationScalarWhereWithAggregatesInput[] No
NOT LocationScalarWhereWithAggregatesInput | LocationScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
address1 StringWithAggregatesFilter | String No
address2 StringWithAggregatesFilter | String No
city StringWithAggregatesFilter | String No
stateProvince StringWithAggregatesFilter | String No
country StringWithAggregatesFilter | String No
postalCode StringWithAggregatesFilter | String No
latitude FloatWithAggregatesFilter | Float No
longitude FloatWithAggregatesFilter | Float No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

PatientWhereInput

Name Type Nullable
AND PatientWhereInput | PatientWhereInput[] No
OR PatientWhereInput[] No
NOT PatientWhereInput | PatientWhereInput[] No
id UuidFilter | String No
uuid UuidFilter | String No
givenName StringFilter | String No
middleName StringFilter | String No
familyName StringFilter | String No
gender EnumGenderFilter | Gender No
birthdate DateTimeNullableFilter | DateTime | Null Yes
phoneCode IntNullableFilter | Int | Null Yes
phoneNumber StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
streetName StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
areaCode StringNullableFilter | String | Null Yes
country EnumCountryFilter | Country No
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
paymentList PaymentListRelationFilter No
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
appointmentList AppointmentListRelationFilter No
encounterList EncounterListRelationFilter No

PatientOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
givenName SortOrder No
middleName SortOrder No
familyName SortOrder No
gender SortOrder No
birthdate SortOrder | SortOrderInput No
phoneCode SortOrder | SortOrderInput No
phoneNumber SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
streetName SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
areaCode SortOrder | SortOrderInput No
country SortOrder No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
paymentList PaymentOrderByRelationAggregateInput No
creator PrincipalOrderByWithRelationInput No
updater PrincipalOrderByWithRelationInput No
appointmentList AppointmentOrderByRelationAggregateInput No
encounterList EncounterOrderByRelationAggregateInput No
_relevance PatientOrderByRelevanceInput No

PatientWhereUniqueInput

Name Type Nullable
id String No
uuid String No
email String No
AND PatientWhereInput | PatientWhereInput[] No
OR PatientWhereInput[] No
NOT PatientWhereInput | PatientWhereInput[] No
givenName StringFilter | String No
middleName StringFilter | String No
familyName StringFilter | String No
gender EnumGenderFilter | Gender No
birthdate DateTimeNullableFilter | DateTime | Null Yes
phoneCode IntNullableFilter | Int | Null Yes
phoneNumber StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
streetName StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
areaCode StringNullableFilter | String | Null Yes
country EnumCountryFilter | Country No
emailVerified DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
paymentList PaymentListRelationFilter No
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
appointmentList AppointmentListRelationFilter No
encounterList EncounterListRelationFilter No

PatientOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
givenName SortOrder No
middleName SortOrder No
familyName SortOrder No
gender SortOrder No
birthdate SortOrder | SortOrderInput No
phoneCode SortOrder | SortOrderInput No
phoneNumber SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
streetName SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
areaCode SortOrder | SortOrderInput No
country SortOrder No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
_count PatientCountOrderByAggregateInput No
_avg PatientAvgOrderByAggregateInput No
_max PatientMaxOrderByAggregateInput No
_min PatientMinOrderByAggregateInput No
_sum PatientSumOrderByAggregateInput No

PatientScalarWhereWithAggregatesInput

Name Type Nullable
AND PatientScalarWhereWithAggregatesInput | PatientScalarWhereWithAggregatesInput[] No
OR PatientScalarWhereWithAggregatesInput[] No
NOT PatientScalarWhereWithAggregatesInput | PatientScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid UuidWithAggregatesFilter | String No
givenName StringWithAggregatesFilter | String No
middleName StringWithAggregatesFilter | String No
familyName StringWithAggregatesFilter | String No
gender EnumGenderWithAggregatesFilter | Gender No
birthdate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
phoneCode IntNullableWithAggregatesFilter | Int | Null Yes
phoneNumber StringNullableWithAggregatesFilter | String | Null Yes
image StringNullableWithAggregatesFilter | String | Null Yes
streetName StringNullableWithAggregatesFilter | String | Null Yes
city StringNullableWithAggregatesFilter | String | Null Yes
areaCode StringNullableWithAggregatesFilter | String | Null Yes
country EnumCountryWithAggregatesFilter | Country No
email StringNullableWithAggregatesFilter | String | Null Yes
emailVerified DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
createdBy UuidNullableWithAggregatesFilter | String | Null Yes
updatedBy UuidNullableWithAggregatesFilter | String | Null Yes

EquipmentWhereInput

Name Type Nullable
AND EquipmentWhereInput | EquipmentWhereInput[] No
OR EquipmentWhereInput[] No
NOT EquipmentWhereInput | EquipmentWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
price IntFilter | Int No
count IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

EquipmentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
price SortOrder No
count SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
creator PrincipalOrderByWithRelationInput No
updater PrincipalOrderByWithRelationInput No
_relevance EquipmentOrderByRelevanceInput No

EquipmentWhereUniqueInput

Name Type Nullable
id String No
AND EquipmentWhereInput | EquipmentWhereInput[] No
OR EquipmentWhereInput[] No
NOT EquipmentWhereInput | EquipmentWhereInput[] No
name StringFilter | String No
price IntFilter | Int No
count IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

EquipmentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
price SortOrder No
count SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
_count EquipmentCountOrderByAggregateInput No
_avg EquipmentAvgOrderByAggregateInput No
_max EquipmentMaxOrderByAggregateInput No
_min EquipmentMinOrderByAggregateInput No
_sum EquipmentSumOrderByAggregateInput No


ServiceWhereInput

Name Type Nullable
AND ServiceWhereInput | ServiceWhereInput[] No
OR ServiceWhereInput[] No
NOT ServiceWhereInput | ServiceWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
price IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

ServiceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
price SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
creator PrincipalOrderByWithRelationInput No
updater PrincipalOrderByWithRelationInput No
_relevance ServiceOrderByRelevanceInput No

ServiceWhereUniqueInput

Name Type Nullable
id String No
AND ServiceWhereInput | ServiceWhereInput[] No
OR ServiceWhereInput[] No
NOT ServiceWhereInput | ServiceWhereInput[] No
name StringFilter | String No
description StringFilter | String No
price IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes
creator PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes
updater PrincipalNullableRelationFilter | PrincipalWhereInput | Null Yes

ServiceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
price SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder | SortOrderInput No
updatedBy SortOrder | SortOrderInput No
_count ServiceCountOrderByAggregateInput No
_avg ServiceAvgOrderByAggregateInput No
_max ServiceMaxOrderByAggregateInput No
_min ServiceMinOrderByAggregateInput No
_sum ServiceSumOrderByAggregateInput No

ServiceScalarWhereWithAggregatesInput

Name Type Nullable
AND ServiceScalarWhereWithAggregatesInput | ServiceScalarWhereWithAggregatesInput[] No
OR ServiceScalarWhereWithAggregatesInput[] No
NOT ServiceScalarWhereWithAggregatesInput | ServiceScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
price IntWithAggregatesFilter | Int No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
createdBy UuidNullableWithAggregatesFilter | String | Null Yes
updatedBy UuidNullableWithAggregatesFilter | String | Null Yes

ProviderWhereInput

Name Type Nullable
AND ProviderWhereInput | ProviderWhereInput[] No
OR ProviderWhereInput[] No
NOT ProviderWhereInput | ProviderWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
identifier StringFilter | String No
description StringFilter | String No
voided BoolFilter | Boolean No
voidedBy StringFilter | String No
dateVoided DateTimeFilter | DateTime No
voidReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
appointmentList AppointmentListRelationFilter No
encounterList EncounterListRelationFilter No

ProviderOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
identifier SortOrder No
description SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
appointmentList AppointmentOrderByRelationAggregateInput No
encounterList EncounterOrderByRelationAggregateInput No
_relevance ProviderOrderByRelevanceInput No

ProviderWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ProviderWhereInput | ProviderWhereInput[] No
OR ProviderWhereInput[] No
NOT ProviderWhereInput | ProviderWhereInput[] No
name StringFilter | String No
identifier StringFilter | String No
description StringFilter | String No
voided BoolFilter | Boolean No
voidedBy StringFilter | String No
dateVoided DateTimeFilter | DateTime No
voidReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
appointmentList AppointmentListRelationFilter No
encounterList EncounterListRelationFilter No

ProviderOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
identifier SortOrder No
description SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ProviderCountOrderByAggregateInput No
_max ProviderMaxOrderByAggregateInput No
_min ProviderMinOrderByAggregateInput No

ProviderScalarWhereWithAggregatesInput

Name Type Nullable
AND ProviderScalarWhereWithAggregatesInput | ProviderScalarWhereWithAggregatesInput[] No
OR ProviderScalarWhereWithAggregatesInput[] No
NOT ProviderScalarWhereWithAggregatesInput | ProviderScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
identifier StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
voided BoolWithAggregatesFilter | Boolean No
voidedBy StringWithAggregatesFilter | String No
dateVoided DateTimeWithAggregatesFilter | DateTime No
voidReason StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

FormWhereInput

Name Type Nullable
AND FormWhereInput | FormWhereInput[] No
OR FormWhereInput[] No
NOT FormWhereInput | FormWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
version StringFilter | String No
retired BoolFilter | Boolean No
retiredBy StringFilter | String No
dateRetired DateTimeFilter | DateTime No
retiredReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
fieldId UuidNullableFilter | String | Null Yes
encounterList EncounterListRelationFilter No
field FieldNullableRelationFilter | FieldWhereInput | Null Yes
formEncounterList FormEncounterListRelationFilter No
formResourceList FormResourceListRelationFilter No
formSubmissionList FormSubmissionListRelationFilter No

FormOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
version SortOrder No
retired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
fieldId SortOrder | SortOrderInput No
encounterList EncounterOrderByRelationAggregateInput No
field FieldOrderByWithRelationInput No
formEncounterList FormEncounterOrderByRelationAggregateInput No
formResourceList FormResourceOrderByRelationAggregateInput No
formSubmissionList FormSubmissionOrderByRelationAggregateInput No
_relevance FormOrderByRelevanceInput No

FormWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FormWhereInput | FormWhereInput[] No
OR FormWhereInput[] No
NOT FormWhereInput | FormWhereInput[] No
name StringFilter | String No
description StringFilter | String No
version StringFilter | String No
retired BoolFilter | Boolean No
retiredBy StringFilter | String No
dateRetired DateTimeFilter | DateTime No
retiredReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
fieldId UuidNullableFilter | String | Null Yes
encounterList EncounterListRelationFilter No
field FieldNullableRelationFilter | FieldWhereInput | Null Yes
formEncounterList FormEncounterListRelationFilter No
formResourceList FormResourceListRelationFilter No
formSubmissionList FormSubmissionListRelationFilter No

FormOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
version SortOrder No
retired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
fieldId SortOrder | SortOrderInput No
_count FormCountOrderByAggregateInput No
_max FormMaxOrderByAggregateInput No
_min FormMinOrderByAggregateInput No

FormScalarWhereWithAggregatesInput

Name Type Nullable
AND FormScalarWhereWithAggregatesInput | FormScalarWhereWithAggregatesInput[] No
OR FormScalarWhereWithAggregatesInput[] No
NOT FormScalarWhereWithAggregatesInput | FormScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
version StringWithAggregatesFilter | String No
retired BoolWithAggregatesFilter | Boolean No
retiredBy StringWithAggregatesFilter | String No
dateRetired DateTimeWithAggregatesFilter | DateTime No
retiredReason StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No
fieldId UuidNullableWithAggregatesFilter | String | Null Yes

FormEncounterWhereInput

Name Type Nullable
AND FormEncounterWhereInput | FormEncounterWhereInput[] No
OR FormEncounterWhereInput[] No
NOT FormEncounterWhereInput | FormEncounterWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formId UuidFilter | String No
encounterId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
encounter EncounterRelationFilter | EncounterWhereInput No
form FormRelationFilter | FormWhereInput No

FormEncounterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
encounter EncounterOrderByWithRelationInput No
form FormOrderByWithRelationInput No
_relevance FormEncounterOrderByRelevanceInput No

FormEncounterWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FormEncounterWhereInput | FormEncounterWhereInput[] No
OR FormEncounterWhereInput[] No
NOT FormEncounterWhereInput | FormEncounterWhereInput[] No
formId UuidFilter | String No
encounterId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
encounter EncounterRelationFilter | EncounterWhereInput No
form FormRelationFilter | FormWhereInput No

FormEncounterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count FormEncounterCountOrderByAggregateInput No
_max FormEncounterMaxOrderByAggregateInput No
_min FormEncounterMinOrderByAggregateInput No


FormResourceWhereInput

Name Type Nullable
AND FormResourceWhereInput | FormResourceWhereInput[] No
OR FormResourceWhereInput[] No
NOT FormResourceWhereInput | FormResourceWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formId UuidFilter | String No
resourceId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
form FormRelationFilter | FormWhereInput No
resource ResourceRelationFilter | ResourceWhereInput No

FormResourceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
resourceId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
form FormOrderByWithRelationInput No
resource ResourceOrderByWithRelationInput No
_relevance FormResourceOrderByRelevanceInput No

FormResourceWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FormResourceWhereInput | FormResourceWhereInput[] No
OR FormResourceWhereInput[] No
NOT FormResourceWhereInput | FormResourceWhereInput[] No
formId UuidFilter | String No
resourceId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
form FormRelationFilter | FormWhereInput No
resource ResourceRelationFilter | ResourceWhereInput No

FormResourceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
resourceId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count FormResourceCountOrderByAggregateInput No
_max FormResourceMaxOrderByAggregateInput No
_min FormResourceMinOrderByAggregateInput No


FormSubmissionWhereInput

Name Type Nullable
AND FormSubmissionWhereInput | FormSubmissionWhereInput[] No
OR FormSubmissionWhereInput[] No
NOT FormSubmissionWhereInput | FormSubmissionWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formId UuidFilter | String No
encounterId UuidFilter | String No
submissionDate DateTimeFilter | DateTime No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
fieldAnswerList FieldAnswerListRelationFilter No
encounter EncounterRelationFilter | EncounterWhereInput No
form FormRelationFilter | FormWhereInput No

FormSubmissionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
submissionDate SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
fieldAnswerList FieldAnswerOrderByRelationAggregateInput No
encounter EncounterOrderByWithRelationInput No
form FormOrderByWithRelationInput No
_relevance FormSubmissionOrderByRelevanceInput No

FormSubmissionWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FormSubmissionWhereInput | FormSubmissionWhereInput[] No
OR FormSubmissionWhereInput[] No
NOT FormSubmissionWhereInput | FormSubmissionWhereInput[] No
formId UuidFilter | String No
encounterId UuidFilter | String No
submissionDate DateTimeFilter | DateTime No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
fieldAnswerList FieldAnswerListRelationFilter No
encounter EncounterRelationFilter | EncounterWhereInput No
form FormRelationFilter | FormWhereInput No

FormSubmissionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
submissionDate SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count FormSubmissionCountOrderByAggregateInput No
_max FormSubmissionMaxOrderByAggregateInput No
_min FormSubmissionMinOrderByAggregateInput No

FormSubmissionScalarWhereWithAggregatesInput

Name Type Nullable
AND FormSubmissionScalarWhereWithAggregatesInput | FormSubmissionScalarWhereWithAggregatesInput[] No
OR FormSubmissionScalarWhereWithAggregatesInput[] No
NOT FormSubmissionScalarWhereWithAggregatesInput | FormSubmissionScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
formId UuidWithAggregatesFilter | String No
encounterId UuidWithAggregatesFilter | String No
submissionDate DateTimeWithAggregatesFilter | DateTime No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

FieldWhereInput

Name Type Nullable
AND FieldWhereInput | FieldWhereInput[] No
OR FieldWhereInput[] No
NOT FieldWhereInput | FieldWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
fieldType StringFilter | String No
conceptId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No
fieldAnswerList FieldAnswerListRelationFilter No
fieldOptionList FieldOptionListRelationFilter No
formList FormListRelationFilter No

FieldOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
fieldType SortOrder No
conceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
concept ConceptOrderByWithRelationInput No
fieldAnswerList FieldAnswerOrderByRelationAggregateInput No
fieldOptionList FieldOptionOrderByRelationAggregateInput No
formList FormOrderByRelationAggregateInput No
_relevance FieldOrderByRelevanceInput No

FieldWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FieldWhereInput | FieldWhereInput[] No
OR FieldWhereInput[] No
NOT FieldWhereInput | FieldWhereInput[] No
name StringFilter | String No
description StringFilter | String No
fieldType StringFilter | String No
conceptId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No
fieldAnswerList FieldAnswerListRelationFilter No
fieldOptionList FieldOptionListRelationFilter No
formList FormListRelationFilter No

FieldOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
fieldType SortOrder No
conceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count FieldCountOrderByAggregateInput No
_max FieldMaxOrderByAggregateInput No
_min FieldMinOrderByAggregateInput No

FieldScalarWhereWithAggregatesInput

Name Type Nullable
AND FieldScalarWhereWithAggregatesInput | FieldScalarWhereWithAggregatesInput[] No
OR FieldScalarWhereWithAggregatesInput[] No
NOT FieldScalarWhereWithAggregatesInput | FieldScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
fieldType StringWithAggregatesFilter | String No
conceptId UuidWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

FieldAnswerWhereInput

Name Type Nullable
AND FieldAnswerWhereInput | FieldAnswerWhereInput[] No
OR FieldAnswerWhereInput[] No
NOT FieldAnswerWhereInput | FieldAnswerWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formSubmissionId UuidFilter | String No
fieldId UuidFilter | String No
value StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
field FieldRelationFilter | FieldWhereInput No
formSubmission FormSubmissionRelationFilter | FormSubmissionWhereInput No

FieldAnswerOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formSubmissionId SortOrder No
fieldId SortOrder No
value SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
field FieldOrderByWithRelationInput No
formSubmission FormSubmissionOrderByWithRelationInput No
_relevance FieldAnswerOrderByRelevanceInput No

FieldAnswerWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FieldAnswerWhereInput | FieldAnswerWhereInput[] No
OR FieldAnswerWhereInput[] No
NOT FieldAnswerWhereInput | FieldAnswerWhereInput[] No
formSubmissionId UuidFilter | String No
fieldId UuidFilter | String No
value StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
field FieldRelationFilter | FieldWhereInput No
formSubmission FormSubmissionRelationFilter | FormSubmissionWhereInput No

FieldAnswerOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formSubmissionId SortOrder No
fieldId SortOrder No
value SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count FieldAnswerCountOrderByAggregateInput No
_max FieldAnswerMaxOrderByAggregateInput No
_min FieldAnswerMinOrderByAggregateInput No

FieldAnswerScalarWhereWithAggregatesInput

Name Type Nullable
AND FieldAnswerScalarWhereWithAggregatesInput | FieldAnswerScalarWhereWithAggregatesInput[] No
OR FieldAnswerScalarWhereWithAggregatesInput[] No
NOT FieldAnswerScalarWhereWithAggregatesInput | FieldAnswerScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
formSubmissionId UuidWithAggregatesFilter | String No
fieldId UuidWithAggregatesFilter | String No
value StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

FieldOptionWhereInput

Name Type Nullable
AND FieldOptionWhereInput | FieldOptionWhereInput[] No
OR FieldOptionWhereInput[] No
NOT FieldOptionWhereInput | FieldOptionWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
fieldId UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
field FieldRelationFilter | FieldWhereInput No

FieldOptionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
fieldId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
field FieldOrderByWithRelationInput No
_relevance FieldOptionOrderByRelevanceInput No

FieldOptionWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND FieldOptionWhereInput | FieldOptionWhereInput[] No
OR FieldOptionWhereInput[] No
NOT FieldOptionWhereInput | FieldOptionWhereInput[] No
fieldId UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
field FieldRelationFilter | FieldWhereInput No

FieldOptionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
fieldId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count FieldOptionCountOrderByAggregateInput No
_max FieldOptionMaxOrderByAggregateInput No
_min FieldOptionMinOrderByAggregateInput No


EncounterWhereInput

Name Type Nullable
AND EncounterWhereInput | EncounterWhereInput[] No
OR EncounterWhereInput[] No
NOT EncounterWhereInput | EncounterWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
encounterTypeId UuidFilter | String No
patientId UuidFilter | String No
locationId UuidFilter | String No
formId UuidFilter | String No
providerId UuidFilter | String No
startDatetime DateTimeFilter | DateTime No
endDatetime DateTimeFilter | DateTime No
voided BoolFilter | Boolean No
voidedBy StringFilter | String No
dateVoided DateTimeFilter | DateTime No
voidReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
encounterType EncounterTypeRelationFilter | EncounterTypeWhereInput No
form FormRelationFilter | FormWhereInput No
location LocationRelationFilter | LocationWhereInput No
patient PatientRelationFilter | PatientWhereInput No
provider ProviderRelationFilter | ProviderWhereInput No
formEncounterList FormEncounterListRelationFilter No
formSubmissionList FormSubmissionListRelationFilter No
obsList ObsListRelationFilter No
orderList OrderListRelationFilter No

EncounterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
encounterTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
formId SortOrder No
providerId SortOrder No
startDatetime SortOrder No
endDatetime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
encounterType EncounterTypeOrderByWithRelationInput No
form FormOrderByWithRelationInput No
location LocationOrderByWithRelationInput No
patient PatientOrderByWithRelationInput No
provider ProviderOrderByWithRelationInput No
formEncounterList FormEncounterOrderByRelationAggregateInput No
formSubmissionList FormSubmissionOrderByRelationAggregateInput No
obsList ObsOrderByRelationAggregateInput No
orderList OrderOrderByRelationAggregateInput No
_relevance EncounterOrderByRelevanceInput No

EncounterWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND EncounterWhereInput | EncounterWhereInput[] No
OR EncounterWhereInput[] No
NOT EncounterWhereInput | EncounterWhereInput[] No
encounterTypeId UuidFilter | String No
patientId UuidFilter | String No
locationId UuidFilter | String No
formId UuidFilter | String No
providerId UuidFilter | String No
startDatetime DateTimeFilter | DateTime No
endDatetime DateTimeFilter | DateTime No
voided BoolFilter | Boolean No
voidedBy StringFilter | String No
dateVoided DateTimeFilter | DateTime No
voidReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
encounterType EncounterTypeRelationFilter | EncounterTypeWhereInput No
form FormRelationFilter | FormWhereInput No
location LocationRelationFilter | LocationWhereInput No
patient PatientRelationFilter | PatientWhereInput No
provider ProviderRelationFilter | ProviderWhereInput No
formEncounterList FormEncounterListRelationFilter No
formSubmissionList FormSubmissionListRelationFilter No
obsList ObsListRelationFilter No
orderList OrderListRelationFilter No

EncounterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
encounterTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
formId SortOrder No
providerId SortOrder No
startDatetime SortOrder No
endDatetime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count EncounterCountOrderByAggregateInput No
_max EncounterMaxOrderByAggregateInput No
_min EncounterMinOrderByAggregateInput No

EncounterScalarWhereWithAggregatesInput

Name Type Nullable
AND EncounterScalarWhereWithAggregatesInput | EncounterScalarWhereWithAggregatesInput[] No
OR EncounterScalarWhereWithAggregatesInput[] No
NOT EncounterScalarWhereWithAggregatesInput | EncounterScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
encounterTypeId UuidWithAggregatesFilter | String No
patientId UuidWithAggregatesFilter | String No
locationId UuidWithAggregatesFilter | String No
formId UuidWithAggregatesFilter | String No
providerId UuidWithAggregatesFilter | String No
startDatetime DateTimeWithAggregatesFilter | DateTime No
endDatetime DateTimeWithAggregatesFilter | DateTime No
voided BoolWithAggregatesFilter | Boolean No
voidedBy StringWithAggregatesFilter | String No
dateVoided DateTimeWithAggregatesFilter | DateTime No
voidReason StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

EncounterTypeWhereInput

Name Type Nullable
AND EncounterTypeWhereInput | EncounterTypeWhereInput[] No
OR EncounterTypeWhereInput[] No
NOT EncounterTypeWhereInput | EncounterTypeWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
encounterList EncounterListRelationFilter No

EncounterTypeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
encounterList EncounterOrderByRelationAggregateInput No
_relevance EncounterTypeOrderByRelevanceInput No

EncounterTypeWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND EncounterTypeWhereInput | EncounterTypeWhereInput[] No
OR EncounterTypeWhereInput[] No
NOT EncounterTypeWhereInput | EncounterTypeWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
encounterList EncounterListRelationFilter No

EncounterTypeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count EncounterTypeCountOrderByAggregateInput No
_max EncounterTypeMaxOrderByAggregateInput No
_min EncounterTypeMinOrderByAggregateInput No


ObsWhereInput

Name Type Nullable
AND ObsWhereInput | ObsWhereInput[] No
OR ObsWhereInput[] No
NOT ObsWhereInput | ObsWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
encounterId UuidFilter | String No
obsDatetime DateTimeFilter | DateTime No
valueDatetime DateTimeFilter | DateTime No
valueNumeric FloatFilter | Float No
valueText StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No
encounter EncounterRelationFilter | EncounterWhereInput No

ObsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
obsDatetime SortOrder No
valueDatetime SortOrder No
valueNumeric SortOrder No
valueText SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
concept ConceptOrderByWithRelationInput No
encounter EncounterOrderByWithRelationInput No
_relevance ObsOrderByRelevanceInput No

ObsWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ObsWhereInput | ObsWhereInput[] No
OR ObsWhereInput[] No
NOT ObsWhereInput | ObsWhereInput[] No
conceptId UuidFilter | String No
encounterId UuidFilter | String No
obsDatetime DateTimeFilter | DateTime No
valueDatetime DateTimeFilter | DateTime No
valueNumeric FloatFilter | Float No
valueText StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No
encounter EncounterRelationFilter | EncounterWhereInput No

ObsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
obsDatetime SortOrder No
valueDatetime SortOrder No
valueNumeric SortOrder No
valueText SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ObsCountOrderByAggregateInput No
_avg ObsAvgOrderByAggregateInput No
_max ObsMaxOrderByAggregateInput No
_min ObsMinOrderByAggregateInput No
_sum ObsSumOrderByAggregateInput No

ObsScalarWhereWithAggregatesInput

Name Type Nullable
AND ObsScalarWhereWithAggregatesInput | ObsScalarWhereWithAggregatesInput[] No
OR ObsScalarWhereWithAggregatesInput[] No
NOT ObsScalarWhereWithAggregatesInput | ObsScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
conceptId UuidWithAggregatesFilter | String No
encounterId UuidWithAggregatesFilter | String No
obsDatetime DateTimeWithAggregatesFilter | DateTime No
valueDatetime DateTimeWithAggregatesFilter | DateTime No
valueNumeric FloatWithAggregatesFilter | Float No
valueText StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

OrderWhereInput

Name Type Nullable
AND OrderWhereInput | OrderWhereInput[] No
OR OrderWhereInput[] No
NOT OrderWhereInput | OrderWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
encounterId UuidFilter | String No
orderDatetime DateTimeFilter | DateTime No
instructions StringFilter | String No
dosage StringFilter | String No
route StringFilter | String No
frequency StringFilter | String No
asNeeded BoolFilter | Boolean No
prn BoolFilter | Boolean No
quantity IntFilter | Int No
units StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderFrequencyId UuidNullableFilter | String | Null Yes
orderRouteId UuidNullableFilter | String | Null Yes
orderTypeId UuidNullableFilter | String | Null Yes
orderUnitId UuidNullableFilter | String | Null Yes
concept ConceptRelationFilter | ConceptWhereInput No
encounter EncounterRelationFilter | EncounterWhereInput No
OrderFrequency OrderFrequencyNullableRelationFilter | OrderFrequencyWhereInput | Null Yes
OrderRoute OrderRouteNullableRelationFilter | OrderRouteWhereInput | Null Yes
OrderType OrderTypeNullableRelationFilter | OrderTypeWhereInput | Null Yes
OrderUnit OrderUnitNullableRelationFilter | OrderUnitWhereInput | Null Yes

OrderOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
orderDatetime SortOrder No
instructions SortOrder No
dosage SortOrder No
route SortOrder No
frequency SortOrder No
asNeeded SortOrder No
prn SortOrder No
quantity SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderFrequencyId SortOrder | SortOrderInput No
orderRouteId SortOrder | SortOrderInput No
orderTypeId SortOrder | SortOrderInput No
orderUnitId SortOrder | SortOrderInput No
concept ConceptOrderByWithRelationInput No
encounter EncounterOrderByWithRelationInput No
OrderFrequency OrderFrequencyOrderByWithRelationInput No
OrderRoute OrderRouteOrderByWithRelationInput No
OrderType OrderTypeOrderByWithRelationInput No
OrderUnit OrderUnitOrderByWithRelationInput No
_relevance OrderOrderByRelevanceInput No

OrderWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND OrderWhereInput | OrderWhereInput[] No
OR OrderWhereInput[] No
NOT OrderWhereInput | OrderWhereInput[] No
conceptId UuidFilter | String No
encounterId UuidFilter | String No
orderDatetime DateTimeFilter | DateTime No
instructions StringFilter | String No
dosage StringFilter | String No
route StringFilter | String No
frequency StringFilter | String No
asNeeded BoolFilter | Boolean No
prn BoolFilter | Boolean No
quantity IntFilter | Int No
units StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderFrequencyId UuidNullableFilter | String | Null Yes
orderRouteId UuidNullableFilter | String | Null Yes
orderTypeId UuidNullableFilter | String | Null Yes
orderUnitId UuidNullableFilter | String | Null Yes
concept ConceptRelationFilter | ConceptWhereInput No
encounter EncounterRelationFilter | EncounterWhereInput No
OrderFrequency OrderFrequencyNullableRelationFilter | OrderFrequencyWhereInput | Null Yes
OrderRoute OrderRouteNullableRelationFilter | OrderRouteWhereInput | Null Yes
OrderType OrderTypeNullableRelationFilter | OrderTypeWhereInput | Null Yes
OrderUnit OrderUnitNullableRelationFilter | OrderUnitWhereInput | Null Yes

OrderOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
orderDatetime SortOrder No
instructions SortOrder No
dosage SortOrder No
route SortOrder No
frequency SortOrder No
asNeeded SortOrder No
prn SortOrder No
quantity SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderFrequencyId SortOrder | SortOrderInput No
orderRouteId SortOrder | SortOrderInput No
orderTypeId SortOrder | SortOrderInput No
orderUnitId SortOrder | SortOrderInput No
_count OrderCountOrderByAggregateInput No
_avg OrderAvgOrderByAggregateInput No
_max OrderMaxOrderByAggregateInput No
_min OrderMinOrderByAggregateInput No
_sum OrderSumOrderByAggregateInput No

OrderScalarWhereWithAggregatesInput

Name Type Nullable
AND OrderScalarWhereWithAggregatesInput | OrderScalarWhereWithAggregatesInput[] No
OR OrderScalarWhereWithAggregatesInput[] No
NOT OrderScalarWhereWithAggregatesInput | OrderScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
conceptId UuidWithAggregatesFilter | String No
encounterId UuidWithAggregatesFilter | String No
orderDatetime DateTimeWithAggregatesFilter | DateTime No
instructions StringWithAggregatesFilter | String No
dosage StringWithAggregatesFilter | String No
route StringWithAggregatesFilter | String No
frequency StringWithAggregatesFilter | String No
asNeeded BoolWithAggregatesFilter | Boolean No
prn BoolWithAggregatesFilter | Boolean No
quantity IntWithAggregatesFilter | Int No
units StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No
orderFrequencyId UuidNullableWithAggregatesFilter | String | Null Yes
orderRouteId UuidNullableWithAggregatesFilter | String | Null Yes
orderTypeId UuidNullableWithAggregatesFilter | String | Null Yes
orderUnitId UuidNullableWithAggregatesFilter | String | Null Yes

OrderFrequencyWhereInput

Name Type Nullable
AND OrderFrequencyWhereInput | OrderFrequencyWhereInput[] No
OR OrderFrequencyWhereInput[] No
NOT OrderFrequencyWhereInput | OrderFrequencyWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderFrequencyOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderList OrderOrderByRelationAggregateInput No
_relevance OrderFrequencyOrderByRelevanceInput No

OrderFrequencyWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND OrderFrequencyWhereInput | OrderFrequencyWhereInput[] No
OR OrderFrequencyWhereInput[] No
NOT OrderFrequencyWhereInput | OrderFrequencyWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderFrequencyOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count OrderFrequencyCountOrderByAggregateInput No
_max OrderFrequencyMaxOrderByAggregateInput No
_min OrderFrequencyMinOrderByAggregateInput No


OrderRouteWhereInput

Name Type Nullable
AND OrderRouteWhereInput | OrderRouteWhereInput[] No
OR OrderRouteWhereInput[] No
NOT OrderRouteWhereInput | OrderRouteWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderRouteOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderList OrderOrderByRelationAggregateInput No
_relevance OrderRouteOrderByRelevanceInput No

OrderRouteWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND OrderRouteWhereInput | OrderRouteWhereInput[] No
OR OrderRouteWhereInput[] No
NOT OrderRouteWhereInput | OrderRouteWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderRouteOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count OrderRouteCountOrderByAggregateInput No
_max OrderRouteMaxOrderByAggregateInput No
_min OrderRouteMinOrderByAggregateInput No


OrderTypeWhereInput

Name Type Nullable
AND OrderTypeWhereInput | OrderTypeWhereInput[] No
OR OrderTypeWhereInput[] No
NOT OrderTypeWhereInput | OrderTypeWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderTypeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderList OrderOrderByRelationAggregateInput No
_relevance OrderTypeOrderByRelevanceInput No

OrderTypeWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND OrderTypeWhereInput | OrderTypeWhereInput[] No
OR OrderTypeWhereInput[] No
NOT OrderTypeWhereInput | OrderTypeWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderTypeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count OrderTypeCountOrderByAggregateInput No
_max OrderTypeMaxOrderByAggregateInput No
_min OrderTypeMinOrderByAggregateInput No


OrderUnitWhereInput

Name Type Nullable
AND OrderUnitWhereInput | OrderUnitWhereInput[] No
OR OrderUnitWhereInput[] No
NOT OrderUnitWhereInput | OrderUnitWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderUnitOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderList OrderOrderByRelationAggregateInput No
_relevance OrderUnitOrderByRelevanceInput No

OrderUnitWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND OrderUnitWhereInput | OrderUnitWhereInput[] No
OR OrderUnitWhereInput[] No
NOT OrderUnitWhereInput | OrderUnitWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderList OrderListRelationFilter No

OrderUnitOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count OrderUnitCountOrderByAggregateInput No
_max OrderUnitMaxOrderByAggregateInput No
_min OrderUnitMinOrderByAggregateInput No


ConceptWhereInput

Name Type Nullable
AND ConceptWhereInput | ConceptWhereInput[] No
OR ConceptWhereInput[] No
NOT ConceptWhereInput | ConceptWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
dataType StringFilter | String No
class StringFilter | String No
isRetired BoolFilter | Boolean No
retiredBy StringFilter | String No
dateRetired DateTimeFilter | DateTime No
retiredReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptClassId UuidNullableFilter | String | Null Yes
conceptDatatypeId UuidNullableFilter | String | Null Yes
conceptMapId UuidNullableFilter | String | Null Yes
conceptSetId UuidNullableFilter | String | Null Yes
conceptSourceId UuidNullableFilter | String | Null Yes
ConceptClass ConceptClassNullableRelationFilter | ConceptClassWhereInput | Null Yes
ConceptDatatype ConceptDatatypeNullableRelationFilter | ConceptDatatypeWhereInput | Null Yes
conceptMap ConceptMapNullableRelationFilter | ConceptMapWhereInput | Null Yes
conceptSet ConceptSetNullableRelationFilter | ConceptSetWhereInput | Null Yes
conceptSource ConceptSourceNullableRelationFilter | ConceptSourceWhereInput | Null Yes
answerList ConceptAnswerListRelationFilter No
metaList ConceptAnswerListRelationFilter No
conceptNameList ConceptNameListRelationFilter No
conceptNumericList ConceptNumericListRelationFilter No
conceptProposalList ConceptProposalListRelationFilter No
conceptWordList ConceptWordListRelationFilter No
fieldList FieldListRelationFilter No
obsList ObsListRelationFilter No
orderList OrderListRelationFilter No

ConceptOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
dataType SortOrder No
class SortOrder No
isRetired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptClassId SortOrder | SortOrderInput No
conceptDatatypeId SortOrder | SortOrderInput No
conceptMapId SortOrder | SortOrderInput No
conceptSetId SortOrder | SortOrderInput No
conceptSourceId SortOrder | SortOrderInput No
ConceptClass ConceptClassOrderByWithRelationInput No
ConceptDatatype ConceptDatatypeOrderByWithRelationInput No
conceptMap ConceptMapOrderByWithRelationInput No
conceptSet ConceptSetOrderByWithRelationInput No
conceptSource ConceptSourceOrderByWithRelationInput No
answerList ConceptAnswerOrderByRelationAggregateInput No
metaList ConceptAnswerOrderByRelationAggregateInput No
conceptNameList ConceptNameOrderByRelationAggregateInput No
conceptNumericList ConceptNumericOrderByRelationAggregateInput No
conceptProposalList ConceptProposalOrderByRelationAggregateInput No
conceptWordList ConceptWordOrderByRelationAggregateInput No
fieldList FieldOrderByRelationAggregateInput No
obsList ObsOrderByRelationAggregateInput No
orderList OrderOrderByRelationAggregateInput No
_relevance ConceptOrderByRelevanceInput No

ConceptWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptWhereInput | ConceptWhereInput[] No
OR ConceptWhereInput[] No
NOT ConceptWhereInput | ConceptWhereInput[] No
name StringFilter | String No
description StringFilter | String No
dataType StringFilter | String No
class StringFilter | String No
isRetired BoolFilter | Boolean No
retiredBy StringFilter | String No
dateRetired DateTimeFilter | DateTime No
retiredReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptClassId UuidNullableFilter | String | Null Yes
conceptDatatypeId UuidNullableFilter | String | Null Yes
conceptMapId UuidNullableFilter | String | Null Yes
conceptSetId UuidNullableFilter | String | Null Yes
conceptSourceId UuidNullableFilter | String | Null Yes
ConceptClass ConceptClassNullableRelationFilter | ConceptClassWhereInput | Null Yes
ConceptDatatype ConceptDatatypeNullableRelationFilter | ConceptDatatypeWhereInput | Null Yes
conceptMap ConceptMapNullableRelationFilter | ConceptMapWhereInput | Null Yes
conceptSet ConceptSetNullableRelationFilter | ConceptSetWhereInput | Null Yes
conceptSource ConceptSourceNullableRelationFilter | ConceptSourceWhereInput | Null Yes
answerList ConceptAnswerListRelationFilter No
metaList ConceptAnswerListRelationFilter No
conceptNameList ConceptNameListRelationFilter No
conceptNumericList ConceptNumericListRelationFilter No
conceptProposalList ConceptProposalListRelationFilter No
conceptWordList ConceptWordListRelationFilter No
fieldList FieldListRelationFilter No
obsList ObsListRelationFilter No
orderList OrderListRelationFilter No

ConceptOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
dataType SortOrder No
class SortOrder No
isRetired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptClassId SortOrder | SortOrderInput No
conceptDatatypeId SortOrder | SortOrderInput No
conceptMapId SortOrder | SortOrderInput No
conceptSetId SortOrder | SortOrderInput No
conceptSourceId SortOrder | SortOrderInput No
_count ConceptCountOrderByAggregateInput No
_max ConceptMaxOrderByAggregateInput No
_min ConceptMinOrderByAggregateInput No

ConceptScalarWhereWithAggregatesInput

Name Type Nullable
AND ConceptScalarWhereWithAggregatesInput | ConceptScalarWhereWithAggregatesInput[] No
OR ConceptScalarWhereWithAggregatesInput[] No
NOT ConceptScalarWhereWithAggregatesInput | ConceptScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
dataType StringWithAggregatesFilter | String No
class StringWithAggregatesFilter | String No
isRetired BoolWithAggregatesFilter | Boolean No
retiredBy StringWithAggregatesFilter | String No
dateRetired DateTimeWithAggregatesFilter | DateTime No
retiredReason StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No
conceptClassId UuidNullableWithAggregatesFilter | String | Null Yes
conceptDatatypeId UuidNullableWithAggregatesFilter | String | Null Yes
conceptMapId UuidNullableWithAggregatesFilter | String | Null Yes
conceptSetId UuidNullableWithAggregatesFilter | String | Null Yes
conceptSourceId UuidNullableWithAggregatesFilter | String | Null Yes

ConceptAnswerWhereInput

Name Type Nullable
AND ConceptAnswerWhereInput | ConceptAnswerWhereInput[] No
OR ConceptAnswerWhereInput[] No
NOT ConceptAnswerWhereInput | ConceptAnswerWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
answerConceptId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
answerConcept ConceptRelationFilter | ConceptWhereInput No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptAnswerOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
answerConceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
answerConcept ConceptOrderByWithRelationInput No
concept ConceptOrderByWithRelationInput No
_relevance ConceptAnswerOrderByRelevanceInput No

ConceptAnswerWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptAnswerWhereInput | ConceptAnswerWhereInput[] No
OR ConceptAnswerWhereInput[] No
NOT ConceptAnswerWhereInput | ConceptAnswerWhereInput[] No
conceptId UuidFilter | String No
answerConceptId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
answerConcept ConceptRelationFilter | ConceptWhereInput No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptAnswerOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
answerConceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptAnswerCountOrderByAggregateInput No
_max ConceptAnswerMaxOrderByAggregateInput No
_min ConceptAnswerMinOrderByAggregateInput No

ConceptAnswerScalarWhereWithAggregatesInput

Name Type Nullable
AND ConceptAnswerScalarWhereWithAggregatesInput | ConceptAnswerScalarWhereWithAggregatesInput[] No
OR ConceptAnswerScalarWhereWithAggregatesInput[] No
NOT ConceptAnswerScalarWhereWithAggregatesInput | ConceptAnswerScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
conceptId UuidWithAggregatesFilter | String No
answerConceptId UuidWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

ConceptClassWhereInput

Name Type Nullable
AND ConceptClassWhereInput | ConceptClassWhereInput[] No
OR ConceptClassWhereInput[] No
NOT ConceptClassWhereInput | ConceptClassWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptClassOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptList ConceptOrderByRelationAggregateInput No
_relevance ConceptClassOrderByRelevanceInput No

ConceptClassWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptClassWhereInput | ConceptClassWhereInput[] No
OR ConceptClassWhereInput[] No
NOT ConceptClassWhereInput | ConceptClassWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptClassOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptClassCountOrderByAggregateInput No
_max ConceptClassMaxOrderByAggregateInput No
_min ConceptClassMinOrderByAggregateInput No


ConceptDatatypeWhereInput

Name Type Nullable
AND ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] No
OR ConceptDatatypeWhereInput[] No
NOT ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptDatatypeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptList ConceptOrderByRelationAggregateInput No
_relevance ConceptDatatypeOrderByRelevanceInput No

ConceptDatatypeWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] No
OR ConceptDatatypeWhereInput[] No
NOT ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptDatatypeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptDatatypeCountOrderByAggregateInput No
_max ConceptDatatypeMaxOrderByAggregateInput No
_min ConceptDatatypeMinOrderByAggregateInput No


ConceptMapWhereInput

Name Type Nullable
AND ConceptMapWhereInput | ConceptMapWhereInput[] No
OR ConceptMapWhereInput[] No
NOT ConceptMapWhereInput | ConceptMapWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptMapOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptList ConceptOrderByRelationAggregateInput No
_relevance ConceptMapOrderByRelevanceInput No

ConceptMapWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptMapWhereInput | ConceptMapWhereInput[] No
OR ConceptMapWhereInput[] No
NOT ConceptMapWhereInput | ConceptMapWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptMapOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptMapCountOrderByAggregateInput No
_max ConceptMapMaxOrderByAggregateInput No
_min ConceptMapMinOrderByAggregateInput No


ConceptNameWhereInput

Name Type Nullable
AND ConceptNameWhereInput | ConceptNameWhereInput[] No
OR ConceptNameWhereInput[] No
NOT ConceptNameWhereInput | ConceptNameWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
name StringFilter | String No
locale StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptNameOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
concept ConceptOrderByWithRelationInput No
_relevance ConceptNameOrderByRelevanceInput No

ConceptNameWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptNameWhereInput | ConceptNameWhereInput[] No
OR ConceptNameWhereInput[] No
NOT ConceptNameWhereInput | ConceptNameWhereInput[] No
conceptId UuidFilter | String No
name StringFilter | String No
locale StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptNameOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptNameCountOrderByAggregateInput No
_max ConceptNameMaxOrderByAggregateInput No
_min ConceptNameMinOrderByAggregateInput No


ConceptNumericWhereInput

Name Type Nullable
AND ConceptNumericWhereInput | ConceptNumericWhereInput[] No
OR ConceptNumericWhereInput[] No
NOT ConceptNumericWhereInput | ConceptNumericWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
hiAbsolute FloatFilter | Float No
hiCritical FloatFilter | Float No
hiNormal FloatFilter | Float No
lowAbsolute FloatFilter | Float No
lowCritical FloatFilter | Float No
lowNormal FloatFilter | Float No
units StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptNumericOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
concept ConceptOrderByWithRelationInput No
_relevance ConceptNumericOrderByRelevanceInput No

ConceptNumericWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptNumericWhereInput | ConceptNumericWhereInput[] No
OR ConceptNumericWhereInput[] No
NOT ConceptNumericWhereInput | ConceptNumericWhereInput[] No
conceptId UuidFilter | String No
hiAbsolute FloatFilter | Float No
hiCritical FloatFilter | Float No
hiNormal FloatFilter | Float No
lowAbsolute FloatFilter | Float No
lowCritical FloatFilter | Float No
lowNormal FloatFilter | Float No
units StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptNumericOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptNumericCountOrderByAggregateInput No
_avg ConceptNumericAvgOrderByAggregateInput No
_max ConceptNumericMaxOrderByAggregateInput No
_min ConceptNumericMinOrderByAggregateInput No
_sum ConceptNumericSumOrderByAggregateInput No

ConceptNumericScalarWhereWithAggregatesInput

Name Type Nullable
AND ConceptNumericScalarWhereWithAggregatesInput | ConceptNumericScalarWhereWithAggregatesInput[] No
OR ConceptNumericScalarWhereWithAggregatesInput[] No
NOT ConceptNumericScalarWhereWithAggregatesInput | ConceptNumericScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
conceptId UuidWithAggregatesFilter | String No
hiAbsolute FloatWithAggregatesFilter | Float No
hiCritical FloatWithAggregatesFilter | Float No
hiNormal FloatWithAggregatesFilter | Float No
lowAbsolute FloatWithAggregatesFilter | Float No
lowCritical FloatWithAggregatesFilter | Float No
lowNormal FloatWithAggregatesFilter | Float No
units StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

ConceptProposalWhereInput

Name Type Nullable
AND ConceptProposalWhereInput | ConceptProposalWhereInput[] No
OR ConceptProposalWhereInput[] No
NOT ConceptProposalWhereInput | ConceptProposalWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptProposalOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
concept ConceptOrderByWithRelationInput No
_relevance ConceptProposalOrderByRelevanceInput No

ConceptProposalWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptProposalWhereInput | ConceptProposalWhereInput[] No
OR ConceptProposalWhereInput[] No
NOT ConceptProposalWhereInput | ConceptProposalWhereInput[] No
conceptId UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptProposalOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptProposalCountOrderByAggregateInput No
_max ConceptProposalMaxOrderByAggregateInput No
_min ConceptProposalMinOrderByAggregateInput No


ConceptSetWhereInput

Name Type Nullable
AND ConceptSetWhereInput | ConceptSetWhereInput[] No
OR ConceptSetWhereInput[] No
NOT ConceptSetWhereInput | ConceptSetWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptSetOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptList ConceptOrderByRelationAggregateInput No
_relevance ConceptSetOrderByRelevanceInput No

ConceptSetWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptSetWhereInput | ConceptSetWhereInput[] No
OR ConceptSetWhereInput[] No
NOT ConceptSetWhereInput | ConceptSetWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptSetOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptSetCountOrderByAggregateInput No
_max ConceptSetMaxOrderByAggregateInput No
_min ConceptSetMinOrderByAggregateInput No


ConceptSourceWhereInput

Name Type Nullable
AND ConceptSourceWhereInput | ConceptSourceWhereInput[] No
OR ConceptSourceWhereInput[] No
NOT ConceptSourceWhereInput | ConceptSourceWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptSourceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptList ConceptOrderByRelationAggregateInput No
_relevance ConceptSourceOrderByRelevanceInput No

ConceptSourceWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptSourceWhereInput | ConceptSourceWhereInput[] No
OR ConceptSourceWhereInput[] No
NOT ConceptSourceWhereInput | ConceptSourceWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptList ConceptListRelationFilter No

ConceptSourceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptSourceCountOrderByAggregateInput No
_max ConceptSourceMaxOrderByAggregateInput No
_min ConceptSourceMinOrderByAggregateInput No


ConceptWordWhereInput

Name Type Nullable
AND ConceptWordWhereInput | ConceptWordWhereInput[] No
OR ConceptWordWhereInput[] No
NOT ConceptWordWhereInput | ConceptWordWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
word StringFilter | String No
locale StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptWordOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
word SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
concept ConceptOrderByWithRelationInput No
_relevance ConceptWordOrderByRelevanceInput No

ConceptWordWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ConceptWordWhereInput | ConceptWordWhereInput[] No
OR ConceptWordWhereInput[] No
NOT ConceptWordWhereInput | ConceptWordWhereInput[] No
conceptId UuidFilter | String No
word StringFilter | String No
locale StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
concept ConceptRelationFilter | ConceptWhereInput No

ConceptWordOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
word SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ConceptWordCountOrderByAggregateInput No
_max ConceptWordMaxOrderByAggregateInput No
_min ConceptWordMinOrderByAggregateInput No


ResourceWhereInput

Name Type Nullable
AND ResourceWhereInput | ResourceWhereInput[] No
OR ResourceWhereInput[] No
NOT ResourceWhereInput | ResourceWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
formResourceList FormResourceListRelationFilter No

ResourceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
formResourceList FormResourceOrderByRelationAggregateInput No
_relevance ResourceOrderByRelevanceInput No

ResourceWhereUniqueInput

Name Type Nullable
id String No
uuid String No
AND ResourceWhereInput | ResourceWhereInput[] No
OR ResourceWhereInput[] No
NOT ResourceWhereInput | ResourceWhereInput[] No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
formResourceList FormResourceListRelationFilter No

ResourceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
_count ResourceCountOrderByAggregateInput No
_max ResourceMaxOrderByAggregateInput No
_min ResourceMinOrderByAggregateInput No

ResourceScalarWhereWithAggregatesInput

Name Type Nullable
AND ResourceScalarWhereWithAggregatesInput | ResourceScalarWhereWithAggregatesInput[] No
OR ResourceScalarWhereWithAggregatesInput[] No
NOT ResourceScalarWhereWithAggregatesInput | ResourceScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
creator StringWithAggregatesFilter | String No
dateCreated DateTimeWithAggregatesFilter | DateTime No
lastChangedBy StringWithAggregatesFilter | String No
lastChangedDate DateTimeWithAggregatesFilter | DateTime No

BlogPostWhereInput

Name Type Nullable
AND BlogPostWhereInput | BlogPostWhereInput[] No
OR BlogPostWhereInput[] No
NOT BlogPostWhereInput | BlogPostWhereInput[] No
id UuidFilter | String No
title StringFilter | String No
content StringFilter | String No
context JsonFilter No
authorId UuidFilter | String No
spaceTimeCoordinatesId UuidFilter | String No
author BlogPostAuthorRelationFilter | BlogPostAuthorWhereInput No
spaceTimeCoordinates SpaceTimeCoordinatesRelationFilter | SpaceTimeCoordinatesWhereInput No
tagArrowList BlogPostTagArrowListRelationFilter No

BlogPostOrderByWithRelationInput

Name Type Nullable
id SortOrder No
title SortOrder No
content SortOrder No
context SortOrder No
authorId SortOrder No
spaceTimeCoordinatesId SortOrder No
author BlogPostAuthorOrderByWithRelationInput No
spaceTimeCoordinates SpaceTimeCoordinatesOrderByWithRelationInput No
tagArrowList BlogPostTagArrowOrderByRelationAggregateInput No
_relevance BlogPostOrderByRelevanceInput No

BlogPostWhereUniqueInput

Name Type Nullable
id String No
spaceTimeCoordinatesId String No
AND BlogPostWhereInput | BlogPostWhereInput[] No
OR BlogPostWhereInput[] No
NOT BlogPostWhereInput | BlogPostWhereInput[] No
title StringFilter | String No
content StringFilter | String No
context JsonFilter No
authorId UuidFilter | String No
author BlogPostAuthorRelationFilter | BlogPostAuthorWhereInput No
spaceTimeCoordinates SpaceTimeCoordinatesRelationFilter | SpaceTimeCoordinatesWhereInput No
tagArrowList BlogPostTagArrowListRelationFilter No

BlogPostOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
title SortOrder No
content SortOrder No
context SortOrder No
authorId SortOrder No
spaceTimeCoordinatesId SortOrder No
_count BlogPostCountOrderByAggregateInput No
_max BlogPostMaxOrderByAggregateInput No
_min BlogPostMinOrderByAggregateInput No


BlogPostTagWhereInput

Name Type Nullable
AND BlogPostTagWhereInput | BlogPostTagWhereInput[] No
OR BlogPostTagWhereInput[] No
NOT BlogPostTagWhereInput | BlogPostTagWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
descriptor StringNullableFilter | String | Null Yes
postArrowList BlogPostTagArrowListRelationFilter No

BlogPostTagOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
descriptor SortOrder | SortOrderInput No
postArrowList BlogPostTagArrowOrderByRelationAggregateInput No
_relevance BlogPostTagOrderByRelevanceInput No

BlogPostTagWhereUniqueInput

Name Type Nullable
id String No
AND BlogPostTagWhereInput | BlogPostTagWhereInput[] No
OR BlogPostTagWhereInput[] No
NOT BlogPostTagWhereInput | BlogPostTagWhereInput[] No
name StringFilter | String No
descriptor StringNullableFilter | String | Null Yes
postArrowList BlogPostTagArrowListRelationFilter No

BlogPostTagOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
descriptor SortOrder | SortOrderInput No
_count BlogPostTagCountOrderByAggregateInput No
_max BlogPostTagMaxOrderByAggregateInput No
_min BlogPostTagMinOrderByAggregateInput No



BlogPostTagArrowOrderByWithRelationInput

Name Type Nullable
id SortOrder No
postId SortOrder No
tagId SortOrder No
post BlogPostOrderByWithRelationInput No
tag BlogPostTagOrderByWithRelationInput No
_relevance BlogPostTagArrowOrderByRelevanceInput No


BlogPostTagArrowOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
postId SortOrder No
tagId SortOrder No
_count BlogPostTagArrowCountOrderByAggregateInput No
_max BlogPostTagArrowMaxOrderByAggregateInput No
_min BlogPostTagArrowMinOrderByAggregateInput No


BlogPostAuthorWhereInput

Name Type Nullable
AND BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] No
OR BlogPostAuthorWhereInput[] No
NOT BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
blogPostList BlogPostListRelationFilter No

BlogPostAuthorOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
blogPostList BlogPostOrderByRelationAggregateInput No
_relevance BlogPostAuthorOrderByRelevanceInput No

BlogPostAuthorWhereUniqueInput

Name Type Nullable
id String No
AND BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] No
OR BlogPostAuthorWhereInput[] No
NOT BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] No
name StringFilter | String No
blogPostList BlogPostListRelationFilter No

BlogPostAuthorOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
_count BlogPostAuthorCountOrderByAggregateInput No
_max BlogPostAuthorMaxOrderByAggregateInput No
_min BlogPostAuthorMinOrderByAggregateInput No


SpaceTimeCoordinatesWhereInput

Name Type Nullable
AND SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] No
OR SpaceTimeCoordinatesWhereInput[] No
NOT SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] No
id UuidFilter | String No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
startTime FloatFilter | Float No
pauseTime FloatNullableFilter | Float | Null Yes
stopTime FloatFilter | Float No
timezone StringFilter | String No
blogPostId UuidFilter | String No
BlogPost BlogPostNullableRelationFilter | BlogPostWhereInput | Null Yes

SpaceTimeCoordinatesOrderByWithRelationInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder | SortOrderInput No
stopTime SortOrder No
timezone SortOrder No
blogPostId SortOrder No
BlogPost BlogPostOrderByWithRelationInput No
_relevance SpaceTimeCoordinatesOrderByRelevanceInput No

SpaceTimeCoordinatesWhereUniqueInput

Name Type Nullable
id String No
AND SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] No
OR SpaceTimeCoordinatesWhereInput[] No
NOT SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
startTime FloatFilter | Float No
pauseTime FloatNullableFilter | Float | Null Yes
stopTime FloatFilter | Float No
timezone StringFilter | String No
blogPostId UuidFilter | String No
BlogPost BlogPostNullableRelationFilter | BlogPostWhereInput | Null Yes

SpaceTimeCoordinatesOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder | SortOrderInput No
stopTime SortOrder No
timezone SortOrder No
blogPostId SortOrder No
_count SpaceTimeCoordinatesCountOrderByAggregateInput No
_avg SpaceTimeCoordinatesAvgOrderByAggregateInput No
_max SpaceTimeCoordinatesMaxOrderByAggregateInput No
_min SpaceTimeCoordinatesMinOrderByAggregateInput No
_sum SpaceTimeCoordinatesSumOrderByAggregateInput No


BudgetEntryWhereInput

Name Type Nullable
AND BudgetEntryWhereInput | BudgetEntryWhereInput[] No
OR BudgetEntryWhereInput[] No
NOT BudgetEntryWhereInput | BudgetEntryWhereInput[] No
id UuidFilter | String No
serviceId UuidFilter | String No
cost FloatFilter | Float No
discount FloatFilter | Float No
promotion FloatFilter | Float No
subtotal FloatFilter | Float No
percentChange FloatFilter | Float No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
budgetId UuidFilter | String No
budget BudgetRelationFilter | BudgetWhereInput No
service BudgetServiceRelationFilter | BudgetServiceWhereInput No

BudgetEntryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
serviceId SortOrder No
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
budgetId SortOrder No
budget BudgetOrderByWithRelationInput No
service BudgetServiceOrderByWithRelationInput No
_relevance BudgetEntryOrderByRelevanceInput No

BudgetEntryWhereUniqueInput

Name Type Nullable
id String No
AND BudgetEntryWhereInput | BudgetEntryWhereInput[] No
OR BudgetEntryWhereInput[] No
NOT BudgetEntryWhereInput | BudgetEntryWhereInput[] No
serviceId UuidFilter | String No
cost FloatFilter | Float No
discount FloatFilter | Float No
promotion FloatFilter | Float No
subtotal FloatFilter | Float No
percentChange FloatFilter | Float No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
budgetId UuidFilter | String No
budget BudgetRelationFilter | BudgetWhereInput No
service BudgetServiceRelationFilter | BudgetServiceWhereInput No

BudgetEntryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
serviceId SortOrder No
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
budgetId SortOrder No
_count BudgetEntryCountOrderByAggregateInput No
_avg BudgetEntryAvgOrderByAggregateInput No
_max BudgetEntryMaxOrderByAggregateInput No
_min BudgetEntryMinOrderByAggregateInput No
_sum BudgetEntrySumOrderByAggregateInput No


BudgetServiceWhereInput

Name Type Nullable
AND BudgetServiceWhereInput | BudgetServiceWhereInput[] No
OR BudgetServiceWhereInput[] No
NOT BudgetServiceWhereInput | BudgetServiceWhereInput[] No
id UuidFilter | String No
description StringFilter | String No
category StringFilter | String No
metadata JsonFilter No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
entryList BudgetEntryListRelationFilter No

BudgetServiceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
description SortOrder No
category SortOrder No
metadata SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entryList BudgetEntryOrderByRelationAggregateInput No
_relevance BudgetServiceOrderByRelevanceInput No

BudgetServiceWhereUniqueInput

Name Type Nullable
id String No
AND BudgetServiceWhereInput | BudgetServiceWhereInput[] No
OR BudgetServiceWhereInput[] No
NOT BudgetServiceWhereInput | BudgetServiceWhereInput[] No
description StringFilter | String No
category StringFilter | String No
metadata JsonFilter No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
entryList BudgetEntryListRelationFilter No

BudgetServiceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
description SortOrder No
category SortOrder No
metadata SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count BudgetServiceCountOrderByAggregateInput No
_max BudgetServiceMaxOrderByAggregateInput No
_min BudgetServiceMinOrderByAggregateInput No


BudgetWhereInput

Name Type Nullable
AND BudgetWhereInput | BudgetWhereInput[] No
OR BudgetWhereInput[] No
NOT BudgetWhereInput | BudgetWhereInput[] No
id UuidFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
fiscalYear IntFilter | Int No
reportId UuidNullableFilter | String | Null Yes
userList BudgetBudUserListRelationFilter No
entryList BudgetEntryListRelationFilter No
report ReportNullableRelationFilter | ReportWhereInput | Null Yes

BudgetOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
fiscalYear SortOrder No
reportId SortOrder | SortOrderInput No
userList BudgetBudUserOrderByRelationAggregateInput No
entryList BudgetEntryOrderByRelationAggregateInput No
report ReportOrderByWithRelationInput No
_relevance BudgetOrderByRelevanceInput No

BudgetWhereUniqueInput

Name Type Nullable
id String No
AND BudgetWhereInput | BudgetWhereInput[] No
OR BudgetWhereInput[] No
NOT BudgetWhereInput | BudgetWhereInput[] No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
fiscalYear IntFilter | Int No
reportId UuidNullableFilter | String | Null Yes
userList BudgetBudUserListRelationFilter No
entryList BudgetEntryListRelationFilter No
report ReportNullableRelationFilter | ReportWhereInput | Null Yes

BudgetOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
fiscalYear SortOrder No
reportId SortOrder | SortOrderInput No
_count BudgetCountOrderByAggregateInput No
_avg BudgetAvgOrderByAggregateInput No
_max BudgetMaxOrderByAggregateInput No
_min BudgetMinOrderByAggregateInput No
_sum BudgetSumOrderByAggregateInput No


ReportWhereInput

Name Type Nullable
AND ReportWhereInput | ReportWhereInput[] No
OR ReportWhereInput[] No
NOT ReportWhereInput | ReportWhereInput[] No
id UuidFilter | String No
budgetId UuidFilter | String No
totalCost FloatFilter | Float No
totalDiscount FloatFilter | Float No
totalPromotion FloatFilter | Float No
totalSubtotal FloatFilter | Float No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
budget BudgetRelationFilter | BudgetWhereInput No

ReportOrderByWithRelationInput

Name Type Nullable
id SortOrder No
budgetId SortOrder No
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
budget BudgetOrderByWithRelationInput No
_relevance ReportOrderByRelevanceInput No

ReportWhereUniqueInput

Name Type Nullable
id String No
budgetId String No
AND ReportWhereInput | ReportWhereInput[] No
OR ReportWhereInput[] No
NOT ReportWhereInput | ReportWhereInput[] No
totalCost FloatFilter | Float No
totalDiscount FloatFilter | Float No
totalPromotion FloatFilter | Float No
totalSubtotal FloatFilter | Float No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
budget BudgetRelationFilter | BudgetWhereInput No

ReportOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
budgetId SortOrder No
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count ReportCountOrderByAggregateInput No
_avg ReportAvgOrderByAggregateInput No
_max ReportMaxOrderByAggregateInput No
_min ReportMinOrderByAggregateInput No
_sum ReportSumOrderByAggregateInput No

ReportScalarWhereWithAggregatesInput

Name Type Nullable
AND ReportScalarWhereWithAggregatesInput | ReportScalarWhereWithAggregatesInput[] No
OR ReportScalarWhereWithAggregatesInput[] No
NOT ReportScalarWhereWithAggregatesInput | ReportScalarWhereWithAggregatesInput[] No
id UuidWithAggregatesFilter | String No
budgetId UuidWithAggregatesFilter | String No
totalCost FloatWithAggregatesFilter | Float No
totalDiscount FloatWithAggregatesFilter | Float No
totalPromotion FloatWithAggregatesFilter | Float No
totalSubtotal FloatWithAggregatesFilter | Float No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No

BudUserWhereInput

Name Type Nullable
AND BudUserWhereInput | BudUserWhereInput[] No
OR BudUserWhereInput[] No
NOT BudUserWhereInput | BudUserWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
email StringFilter | String No
password StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
eventList BudEventListRelationFilter No
budgetList BudgetBudUserListRelationFilter No

BudUserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
eventList BudEventOrderByRelationAggregateInput No
budgetList BudgetBudUserOrderByRelationAggregateInput No
_relevance BudUserOrderByRelevanceInput No

BudUserWhereUniqueInput

Name Type Nullable
id String No
email String No
AND BudUserWhereInput | BudUserWhereInput[] No
OR BudUserWhereInput[] No
NOT BudUserWhereInput | BudUserWhereInput[] No
name StringFilter | String No
password StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
eventList BudEventListRelationFilter No
budgetList BudgetBudUserListRelationFilter No

BudUserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count BudUserCountOrderByAggregateInput No
_max BudUserMaxOrderByAggregateInput No
_min BudUserMinOrderByAggregateInput No


BudgetBudUserWhereInput

Name Type Nullable
AND BudgetBudUserWhereInput | BudgetBudUserWhereInput[] No
OR BudgetBudUserWhereInput[] No
NOT BudgetBudUserWhereInput | BudgetBudUserWhereInput[] No
id UuidFilter | String No
userId UuidFilter | String No
budgetId UuidFilter | String No
role StringFilter | String No
ability StringFilter | String No
category StringFilter | String No
budget BudgetRelationFilter | BudgetWhereInput No
user BudUserRelationFilter | BudUserWhereInput No

BudgetBudUserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
budgetId SortOrder No
role SortOrder No
ability SortOrder No
category SortOrder No
budget BudgetOrderByWithRelationInput No
user BudUserOrderByWithRelationInput No
_relevance BudgetBudUserOrderByRelevanceInput No

BudgetBudUserWhereUniqueInput

Name Type Nullable
id String No
userId_budgetId BudgetBudUserUserIdBudgetIdCompoundUniqueInput No
AND BudgetBudUserWhereInput | BudgetBudUserWhereInput[] No
OR BudgetBudUserWhereInput[] No
NOT BudgetBudUserWhereInput | BudgetBudUserWhereInput[] No
userId UuidFilter | String No
budgetId UuidFilter | String No
role StringFilter | String No
ability StringFilter | String No
category StringFilter | String No
budget BudgetRelationFilter | BudgetWhereInput No
user BudUserRelationFilter | BudUserWhereInput No

BudgetBudUserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
budgetId SortOrder No
role SortOrder No
ability SortOrder No
category SortOrder No
_count BudgetBudUserCountOrderByAggregateInput No
_max BudgetBudUserMaxOrderByAggregateInput No
_min BudgetBudUserMinOrderByAggregateInput No


BudEventWhereInput

Name Type Nullable
AND BudEventWhereInput | BudEventWhereInput[] No
OR BudEventWhereInput[] No
NOT BudEventWhereInput | BudEventWhereInput[] No
id UuidFilter | String No
type StringFilter | String No
description StringFilter | String No
categoryList StringNullableListFilter No
metadata JsonFilter No
budUserId UuidFilter | String No
createdAt DateTimeFilter | DateTime No
budUser BudUserRelationFilter | BudUserWhereInput No

BudEventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
type SortOrder No
description SortOrder No
categoryList SortOrder No
metadata SortOrder No
budUserId SortOrder No
createdAt SortOrder No
budUser BudUserOrderByWithRelationInput No
_relevance BudEventOrderByRelevanceInput No

BudEventWhereUniqueInput

Name Type Nullable
id String No
AND BudEventWhereInput | BudEventWhereInput[] No
OR BudEventWhereInput[] No
NOT BudEventWhereInput | BudEventWhereInput[] No
type StringFilter | String No
description StringFilter | String No
categoryList StringNullableListFilter No
metadata JsonFilter No
budUserId UuidFilter | String No
createdAt DateTimeFilter | DateTime No
budUser BudUserRelationFilter | BudUserWhereInput No

BudEventOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
type SortOrder No
description SortOrder No
categoryList SortOrder No
metadata SortOrder No
budUserId SortOrder No
createdAt SortOrder No
_count BudEventCountOrderByAggregateInput No
_max BudEventMaxOrderByAggregateInput No
_min BudEventMinOrderByAggregateInput No


PrincipalCreateInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

PrincipalCreateManyInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

PrincipalUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PrincipalUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountCreateInput

Name Type Nullable
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
createdAt DateTime No
updatedAt DateTime No
user PrincipalCreateNestedOneWithoutAccountsInput No

AccountUncheckedCreateInput

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
createdAt DateTime No
updatedAt DateTime No

AccountUpdateInput

Name Type Nullable
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
user PrincipalUpdateOneRequiredWithoutAccountsNestedInput No

AccountUncheckedUpdateInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AccountCreateManyInput

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
createdAt DateTime No
updatedAt DateTime No

AccountUpdateManyMutationInput

Name Type Nullable
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AccountUncheckedUpdateManyInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

SessionCreateInput

Name Type Nullable
sessionToken String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No
user PrincipalCreateNestedOneWithoutSessionsInput No

SessionUncheckedCreateInput

Name Type Nullable
sessionToken String No
userId String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

SessionUpdateInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
user PrincipalUpdateOneRequiredWithoutSessionsNestedInput No

SessionUncheckedUpdateInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

SessionCreateManyInput

Name Type Nullable
sessionToken String No
userId String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

SessionUpdateManyMutationInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUncheckedCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenCreateManyInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateManyMutationInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateManyInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

AuthenticatorCreateInput

Name Type Nullable
credentialID String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String | Null Yes
user PrincipalCreateNestedOneWithoutAuthenticatorInput No

AuthenticatorUncheckedCreateInput

Name Type Nullable
credentialID String No
userId String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String | Null Yes

AuthenticatorUpdateInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes
user PrincipalUpdateOneRequiredWithoutAuthenticatorNestedInput No

AuthenticatorUncheckedUpdateInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes

AuthenticatorCreateManyInput

Name Type Nullable
credentialID String No
userId String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String | Null Yes

AuthenticatorUpdateManyMutationInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes

AuthenticatorUncheckedUpdateManyInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes

PaymentCreateInput

Name Type Nullable
id String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
payer PatientCreateNestedOneWithoutPaymentListInput No
receiver PrincipalCreateNestedOneWithoutReceivedPaymentListInput No
creator PrincipalCreateNestedOneWithoutCreatedPaymentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPaymentsInput No

PaymentUncheckedCreateInput

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes


PaymentUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PaymentCreateManyInput

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

PaymentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentCreateInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
appointmentType AppointmentTypeCreateNestedOneWithoutAppointmentListInput No
location LocationCreateNestedOneWithoutAppointmentListInput No
patient PatientCreateNestedOneWithoutAppointmentListInput No
provider ProviderCreateNestedOneWithoutAppointmentListInput No
creator PrincipalCreateNestedOneWithoutCreatedAppointmentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput No

AppointmentUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
appointmentType AppointmentTypeUpdateOneWithoutAppointmentListNestedInput No
location LocationUpdateOneWithoutAppointmentListNestedInput No
patient PatientUpdateOneRequiredWithoutAppointmentListNestedInput No
provider ProviderUpdateOneWithoutAppointmentListNestedInput No
creator PrincipalUpdateOneWithoutCreatedAppointmentsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedAppointmentsNestedInput No

AppointmentUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentCreateManyInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AppointmentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentTypeCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentCreateNestedManyWithoutAppointmentTypeInput No

AppointmentTypeUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentUncheckedCreateNestedManyWithoutAppointmentTypeInput No

AppointmentTypeUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
duration Int | IntFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUpdateManyWithoutAppointmentTypeNestedInput No

AppointmentTypeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
duration Int | IntFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUncheckedUpdateManyWithoutAppointmentTypeNestedInput No

AppointmentTypeCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

AppointmentTypeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
duration Int | IntFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

AppointmentTypeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
duration Int | IntFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

LocationCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentCreateNestedManyWithoutLocationInput No
encounterList EncounterCreateNestedManyWithoutLocationInput No

LocationUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentUncheckedCreateNestedManyWithoutLocationInput No
encounterList EncounterUncheckedCreateNestedManyWithoutLocationInput No

LocationUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUpdateManyWithoutLocationNestedInput No
encounterList EncounterUpdateManyWithoutLocationNestedInput No

LocationUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUncheckedUpdateManyWithoutLocationNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutLocationNestedInput No

LocationCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

LocationUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

LocationUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

PatientCreateInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
paymentList PaymentCreateNestedManyWithoutPayerInput No
creator PrincipalCreateNestedOneWithoutCreatedPatientsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPatientsInput No
appointmentList AppointmentCreateNestedManyWithoutPatientInput No
encounterList EncounterCreateNestedManyWithoutPatientInput No

PatientUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
paymentList PaymentUncheckedCreateNestedManyWithoutPayerInput No
appointmentList AppointmentUncheckedCreateNestedManyWithoutPatientInput No
encounterList EncounterUncheckedCreateNestedManyWithoutPatientInput No

PatientUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
paymentList PaymentUpdateManyWithoutPayerNestedInput No
creator PrincipalUpdateOneWithoutCreatedPatientsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPatientsNestedInput No
appointmentList AppointmentUpdateManyWithoutPatientNestedInput No
encounterList EncounterUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentList PaymentUncheckedUpdateManyWithoutPayerNestedInput No
appointmentList AppointmentUncheckedUpdateManyWithoutPatientNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutPatientNestedInput No

PatientCreateManyInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

PatientUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PatientUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EquipmentCreateInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedEquipmentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedEquipmentsInput No

EquipmentUncheckedCreateInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes


EquipmentUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EquipmentCreateManyInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

EquipmentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

EquipmentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ServiceCreateInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedServicesInput No
updater PrincipalCreateNestedOneWithoutUpdatedServicesInput No

ServiceUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes


ServiceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ServiceCreateManyInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

ServiceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

ServiceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ProviderCreateInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentCreateNestedManyWithoutProviderInput No
encounterList EncounterCreateNestedManyWithoutProviderInput No

ProviderUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentUncheckedCreateNestedManyWithoutProviderInput No
encounterList EncounterUncheckedCreateNestedManyWithoutProviderInput No

ProviderUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUpdateManyWithoutProviderNestedInput No
encounterList EncounterUpdateManyWithoutProviderNestedInput No

ProviderUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUncheckedUpdateManyWithoutProviderNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutProviderNestedInput No

ProviderCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ProviderUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ProviderUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutFormInput No
field FieldCreateNestedOneWithoutFormListInput No
formEncounterList FormEncounterCreateNestedManyWithoutFormInput No
formResourceList FormResourceCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutFormInput No

FormUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String | Null Yes
encounterList EncounterUncheckedCreateNestedManyWithoutFormInput No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutFormInput No
formResourceList FormResourceUncheckedCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutFormInput No

FormUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutFormNestedInput No
field FieldUpdateOneWithoutFormListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldId String | NullableStringFieldUpdateOperationsInput | Null Yes
encounterList EncounterUncheckedUpdateManyWithoutFormNestedInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUncheckedUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutFormNestedInput No

FormCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String | Null Yes

FormUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldId String | NullableStringFieldUpdateOperationsInput | Null Yes

FormEncounterCreateInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounter EncounterCreateNestedOneWithoutFormEncounterListInput No
form FormCreateNestedOneWithoutFormEncounterListInput No

FormEncounterUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No


FormEncounterUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormEncounterCreateManyInput

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormEncounterUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormEncounterUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormResourceCreateInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
form FormCreateNestedOneWithoutFormResourceListInput No
resource ResourceCreateNestedOneWithoutFormResourceListInput No

FormResourceUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
formId String No
resourceId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No


FormResourceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
resourceId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormResourceCreateManyInput

Name Type Nullable
id String No
uuid String No
formId String No
resourceId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormResourceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
resourceId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormSubmissionCreateInput

Name Type Nullable
id String No
uuid String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFormSubmissionInput No
encounter EncounterCreateNestedOneWithoutFormSubmissionListInput No
form FormCreateNestedOneWithoutFormSubmissionListInput No

FormSubmissionUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFormSubmissionInput No


FormSubmissionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput No

FormSubmissionCreateManyInput

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormSubmissionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormSubmissionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutFieldListInput No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFieldInput No
fieldOptionList FieldOptionCreateNestedManyWithoutFieldInput No
formList FormCreateNestedManyWithoutFieldInput No

FieldUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFieldInput No
fieldOptionList FieldOptionUncheckedCreateNestedManyWithoutFieldInput No
formList FormUncheckedCreateNestedManyWithoutFieldInput No


FieldUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput No
fieldOptionList FieldOptionUncheckedUpdateManyWithoutFieldNestedInput No
formList FormUncheckedUpdateManyWithoutFieldNestedInput No

FieldCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerCreateInput

Name Type Nullable
id String No
uuid String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
field FieldCreateNestedOneWithoutFieldAnswerListInput No
formSubmission FormSubmissionCreateNestedOneWithoutFieldAnswerListInput No

FieldAnswerUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
formSubmissionId String No
fieldId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No


FieldAnswerUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formSubmissionId String | StringFieldUpdateOperationsInput No
fieldId String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerCreateManyInput

Name Type Nullable
id String No
uuid String No
formSubmissionId String No
fieldId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formSubmissionId String | StringFieldUpdateOperationsInput No
fieldId String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldOptionCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
field FieldCreateNestedOneWithoutFieldOptionListInput No

FieldOptionUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
fieldId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
field FieldUpdateOneRequiredWithoutFieldOptionListNestedInput No

FieldOptionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
fieldId String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldOptionCreateManyInput

Name Type Nullable
id String No
uuid String No
fieldId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldOptionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
fieldId String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

EncounterCreateInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

EncounterCreateManyInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

EncounterUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

EncounterTypeCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutEncounterTypeInput No

EncounterTypeUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterUncheckedCreateNestedManyWithoutEncounterTypeInput No

EncounterTypeUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutEncounterTypeNestedInput No

EncounterTypeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUncheckedUpdateManyWithoutEncounterTypeNestedInput No

EncounterTypeCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterTypeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

EncounterTypeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsCreateInput

Name Type Nullable
id String No
uuid String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutObsListInput No
encounter EncounterCreateNestedOneWithoutObsListInput No

ObsUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutObsListNestedInput No
encounter EncounterUpdateOneRequiredWithoutObsListNestedInput No

ObsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderCreateInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutOrderListInput No
encounter EncounterCreateNestedOneWithoutOrderListInput No
OrderFrequency OrderFrequencyCreateNestedOneWithoutOrderListInput No
OrderRoute OrderRouteCreateNestedOneWithoutOrderListInput No
OrderType OrderTypeCreateNestedOneWithoutOrderListInput No
OrderUnit OrderUnitCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutOrderListNestedInput No
encounter EncounterUpdateOneRequiredWithoutOrderListNestedInput No
OrderFrequency OrderFrequencyUpdateOneWithoutOrderListNestedInput No
OrderRoute OrderRouteUpdateOneWithoutOrderListNestedInput No
OrderType OrderTypeUpdateOneWithoutOrderListNestedInput No
OrderUnit OrderUnitUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderFrequencyCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderCreateNestedManyWithoutOrderFrequencyInput No

OrderFrequencyUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderUncheckedCreateNestedManyWithoutOrderFrequencyInput No

OrderFrequencyUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUpdateManyWithoutOrderFrequencyNestedInput No

OrderFrequencyUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUncheckedUpdateManyWithoutOrderFrequencyNestedInput No

OrderFrequencyCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderFrequencyUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderFrequencyUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderRouteCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderCreateNestedManyWithoutOrderRouteInput No

OrderRouteUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderUncheckedCreateNestedManyWithoutOrderRouteInput No

OrderRouteUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUpdateManyWithoutOrderRouteNestedInput No

OrderRouteUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUncheckedUpdateManyWithoutOrderRouteNestedInput No

OrderRouteCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderRouteUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderRouteUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderTypeCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderCreateNestedManyWithoutOrderTypeInput No

OrderTypeUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderUncheckedCreateNestedManyWithoutOrderTypeInput No

OrderTypeUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUpdateManyWithoutOrderTypeNestedInput No

OrderTypeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUncheckedUpdateManyWithoutOrderTypeNestedInput No

OrderTypeCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderTypeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderTypeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderUnitCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderCreateNestedManyWithoutOrderUnitInput No

OrderUnitUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderList OrderUncheckedCreateNestedManyWithoutOrderUnitInput No

OrderUnitUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUpdateManyWithoutOrderUnitNestedInput No

OrderUnitUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderList OrderUncheckedUpdateManyWithoutOrderUnitNestedInput No

OrderUnitCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderUnitUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderUnitUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes

ConceptUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptAnswerCreateInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
answerConcept ConceptCreateNestedOneWithoutAnswerListInput No
concept ConceptCreateNestedOneWithoutMetaListInput No

ConceptAnswerUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
answerConceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptAnswerUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
answerConcept ConceptUpdateOneRequiredWithoutAnswerListNestedInput No
concept ConceptUpdateOneRequiredWithoutMetaListNestedInput No

ConceptAnswerUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
answerConceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptAnswerCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
answerConceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptAnswerUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptAnswerUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
answerConceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptClassCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptCreateNestedManyWithoutConceptClassInput No

ConceptClassUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptUncheckedCreateNestedManyWithoutConceptClassInput No

ConceptClassUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUpdateManyWithoutConceptClassNestedInput No

ConceptClassUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUncheckedUpdateManyWithoutConceptClassNestedInput No

ConceptClassCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptClassUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptClassUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptDatatypeCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptCreateNestedManyWithoutConceptDatatypeInput No

ConceptDatatypeUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptUncheckedCreateNestedManyWithoutConceptDatatypeInput No

ConceptDatatypeUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUpdateManyWithoutConceptDatatypeNestedInput No

ConceptDatatypeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUncheckedUpdateManyWithoutConceptDatatypeNestedInput No

ConceptDatatypeCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptDatatypeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptDatatypeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptMapCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptCreateNestedManyWithoutConceptMapInput No

ConceptMapUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptUncheckedCreateNestedManyWithoutConceptMapInput No

ConceptMapUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUpdateManyWithoutConceptMapNestedInput No

ConceptMapUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUncheckedUpdateManyWithoutConceptMapNestedInput No

ConceptMapCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptMapUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptMapUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNameCreateInput

Name Type Nullable
id String No
uuid String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutConceptNameListInput No

ConceptNameUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutConceptNameListNestedInput No

ConceptNameUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNameCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNameUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNumericCreateInput

Name Type Nullable
id String No
uuid String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutConceptNumericListInput No

ConceptNumericUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutConceptNumericListNestedInput No

ConceptNumericUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNumericCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNumericUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptProposalCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutConceptProposalListInput No

ConceptProposalUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutConceptProposalListNestedInput No

ConceptProposalUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptProposalCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptProposalUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptSetCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptCreateNestedManyWithoutConceptSetInput No

ConceptSetUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptUncheckedCreateNestedManyWithoutConceptSetInput No

ConceptSetUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUpdateManyWithoutConceptSetNestedInput No

ConceptSetUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUncheckedUpdateManyWithoutConceptSetNestedInput No

ConceptSetCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSetUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptSetUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptSourceCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptCreateNestedManyWithoutConceptSourceInput No

ConceptSourceUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptList ConceptUncheckedCreateNestedManyWithoutConceptSourceInput No

ConceptSourceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUpdateManyWithoutConceptSourceNestedInput No

ConceptSourceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptList ConceptUncheckedUpdateManyWithoutConceptSourceNestedInput No

ConceptSourceCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSourceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptSourceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptWordCreateInput

Name Type Nullable
id String No
uuid String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutConceptWordListInput No

ConceptWordUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
conceptId String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutConceptWordListNestedInput No

ConceptWordUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptWordCreateManyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptWordUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ResourceCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formResourceList FormResourceCreateNestedManyWithoutResourceInput No

ResourceUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formResourceList FormResourceUncheckedCreateNestedManyWithoutResourceInput No

ResourceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formResourceList FormResourceUpdateManyWithoutResourceNestedInput No

ResourceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formResourceList FormResourceUncheckedUpdateManyWithoutResourceNestedInput No

ResourceCreateManyInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ResourceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ResourceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

BlogPostCreateInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
author BlogPostAuthorCreateNestedOneWithoutBlogPostListInput No
spaceTimeCoordinates SpaceTimeCoordinatesCreateNestedOneWithoutBlogPostInput No
tagArrowList BlogPostTagArrowCreateNestedManyWithoutPostInput No

BlogPostUncheckedCreateInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
authorId String No
spaceTimeCoordinatesId String No
tagArrowList BlogPostTagArrowUncheckedCreateNestedManyWithoutPostInput No


BlogPostUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
authorId String | StringFieldUpdateOperationsInput No
spaceTimeCoordinatesId String | StringFieldUpdateOperationsInput No
tagArrowList BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput No

BlogPostCreateManyInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
authorId String No
spaceTimeCoordinatesId String No

BlogPostUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No

BlogPostUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
authorId String | StringFieldUpdateOperationsInput No
spaceTimeCoordinatesId String | StringFieldUpdateOperationsInput No

BlogPostTagCreateInput

Name Type Nullable
id String No
name String No
descriptor String | Null Yes
postArrowList BlogPostTagArrowCreateNestedManyWithoutTagInput No

BlogPostTagUncheckedCreateInput

Name Type Nullable
id String No
name String No
descriptor String | Null Yes
postArrowList BlogPostTagArrowUncheckedCreateNestedManyWithoutTagInput No

BlogPostTagUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
descriptor String | NullableStringFieldUpdateOperationsInput | Null Yes
postArrowList BlogPostTagArrowUpdateManyWithoutTagNestedInput No

BlogPostTagUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
descriptor String | NullableStringFieldUpdateOperationsInput | Null Yes
postArrowList BlogPostTagArrowUncheckedUpdateManyWithoutTagNestedInput No

BlogPostTagCreateManyInput

Name Type Nullable
id String No
name String No
descriptor String | Null Yes

BlogPostTagUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
descriptor String | NullableStringFieldUpdateOperationsInput | Null Yes

BlogPostTagUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
descriptor String | NullableStringFieldUpdateOperationsInput | Null Yes

BlogPostTagArrowCreateInput

Name Type Nullable
id String No
post BlogPostCreateNestedOneWithoutTagArrowListInput No
tag BlogPostTagCreateNestedOneWithoutPostArrowListInput No

BlogPostTagArrowUncheckedCreateInput

Name Type Nullable
id String No
postId String No
tagId String No


BlogPostTagArrowUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
tagId String | StringFieldUpdateOperationsInput No

BlogPostTagArrowCreateManyInput

Name Type Nullable
id String No
postId String No
tagId String No

BlogPostTagArrowUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

BlogPostTagArrowUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
tagId String | StringFieldUpdateOperationsInput No

BlogPostAuthorCreateInput

Name Type Nullable
id String No
name String No
blogPostList BlogPostCreateNestedManyWithoutAuthorInput No

BlogPostAuthorUncheckedCreateInput

Name Type Nullable
id String No
name String No
blogPostList BlogPostUncheckedCreateNestedManyWithoutAuthorInput No

BlogPostAuthorUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
blogPostList BlogPostUpdateManyWithoutAuthorNestedInput No

BlogPostAuthorUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
blogPostList BlogPostUncheckedUpdateManyWithoutAuthorNestedInput No

BlogPostAuthorCreateManyInput

Name Type Nullable
id String No
name String No

BlogPostAuthorUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

BlogPostAuthorUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

SpaceTimeCoordinatesCreateInput

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float | Null Yes
stopTime Float No
timezone String No
blogPostId String No
BlogPost BlogPostCreateNestedOneWithoutSpaceTimeCoordinatesInput No

SpaceTimeCoordinatesUncheckedCreateInput

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float | Null Yes
stopTime Float No
timezone String No
blogPostId String No
BlogPost BlogPostUncheckedCreateNestedOneWithoutSpaceTimeCoordinatesInput No

SpaceTimeCoordinatesUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
startTime Float | FloatFieldUpdateOperationsInput No
pauseTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
stopTime Float | FloatFieldUpdateOperationsInput No
timezone String | StringFieldUpdateOperationsInput No
blogPostId String | StringFieldUpdateOperationsInput No
BlogPost BlogPostUpdateOneWithoutSpaceTimeCoordinatesNestedInput No

SpaceTimeCoordinatesUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
startTime Float | FloatFieldUpdateOperationsInput No
pauseTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
stopTime Float | FloatFieldUpdateOperationsInput No
timezone String | StringFieldUpdateOperationsInput No
blogPostId String | StringFieldUpdateOperationsInput No
BlogPost BlogPostUncheckedUpdateOneWithoutSpaceTimeCoordinatesNestedInput No

SpaceTimeCoordinatesCreateManyInput

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float | Null Yes
stopTime Float No
timezone String No
blogPostId String No

SpaceTimeCoordinatesUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
startTime Float | FloatFieldUpdateOperationsInput No
pauseTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
stopTime Float | FloatFieldUpdateOperationsInput No
timezone String | StringFieldUpdateOperationsInput No
blogPostId String | StringFieldUpdateOperationsInput No

SpaceTimeCoordinatesUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
startTime Float | FloatFieldUpdateOperationsInput No
pauseTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
stopTime Float | FloatFieldUpdateOperationsInput No
timezone String | StringFieldUpdateOperationsInput No
blogPostId String | StringFieldUpdateOperationsInput No

BudgetEntryCreateInput

Name Type Nullable
id String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budget BudgetCreateNestedOneWithoutEntryListInput No
service BudgetServiceCreateNestedOneWithoutEntryListInput No

BudgetEntryUncheckedCreateInput

Name Type Nullable
id String No
serviceId String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budgetId String No


BudgetEntryUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
serviceId String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No

BudgetEntryCreateManyInput

Name Type Nullable
id String No
serviceId String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budgetId String No

BudgetEntryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetEntryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
serviceId String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No

BudgetServiceCreateInput

Name Type Nullable
id String No
description String No
category String No
metadata JsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
entryList BudgetEntryCreateNestedManyWithoutServiceInput No

BudgetServiceUncheckedCreateInput

Name Type Nullable
id String No
description String No
category String No
metadata JsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
entryList BudgetEntryUncheckedCreateNestedManyWithoutServiceInput No

BudgetServiceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entryList BudgetEntryUpdateManyWithoutServiceNestedInput No

BudgetServiceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entryList BudgetEntryUncheckedUpdateManyWithoutServiceNestedInput No

BudgetServiceCreateManyInput

Name Type Nullable
id String No
description String No
category String No
metadata JsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No

BudgetServiceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetServiceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
userList BudgetBudUserCreateNestedManyWithoutBudgetInput No
entryList BudgetEntryCreateNestedManyWithoutBudgetInput No
report ReportCreateNestedOneWithoutBudgetInput No

BudgetUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
userList BudgetBudUserUncheckedCreateNestedManyWithoutBudgetInput No
entryList BudgetEntryUncheckedCreateNestedManyWithoutBudgetInput No
report ReportUncheckedCreateNestedOneWithoutBudgetInput No



BudgetCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes

BudgetUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes

BudgetUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes

ReportCreateInput

Name Type Nullable
id String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No
budget BudgetCreateNestedOneWithoutReportInput No

ReportUncheckedCreateInput

Name Type Nullable
id String No
budgetId String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No

ReportUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
totalCost Float | FloatFieldUpdateOperationsInput No
totalDiscount Float | FloatFieldUpdateOperationsInput No
totalPromotion Float | FloatFieldUpdateOperationsInput No
totalSubtotal Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budget BudgetUpdateOneRequiredWithoutReportNestedInput No

ReportUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No
totalCost Float | FloatFieldUpdateOperationsInput No
totalDiscount Float | FloatFieldUpdateOperationsInput No
totalPromotion Float | FloatFieldUpdateOperationsInput No
totalSubtotal Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

ReportCreateManyInput

Name Type Nullable
id String No
budgetId String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No

ReportUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
totalCost Float | FloatFieldUpdateOperationsInput No
totalDiscount Float | FloatFieldUpdateOperationsInput No
totalPromotion Float | FloatFieldUpdateOperationsInput No
totalSubtotal Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

ReportUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No
totalCost Float | FloatFieldUpdateOperationsInput No
totalDiscount Float | FloatFieldUpdateOperationsInput No
totalPromotion Float | FloatFieldUpdateOperationsInput No
totalSubtotal Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudUserCreateInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No
eventList BudEventCreateNestedManyWithoutBudUserInput No
budgetList BudgetBudUserCreateNestedManyWithoutUserInput No

BudUserUncheckedCreateInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No
eventList BudEventUncheckedCreateNestedManyWithoutBudUserInput No
budgetList BudgetBudUserUncheckedCreateNestedManyWithoutUserInput No

BudUserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
eventList BudEventUpdateManyWithoutBudUserNestedInput No
budgetList BudgetBudUserUpdateManyWithoutUserNestedInput No

BudUserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
eventList BudEventUncheckedUpdateManyWithoutBudUserNestedInput No
budgetList BudgetBudUserUncheckedUpdateManyWithoutUserNestedInput No

BudUserCreateManyInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No

BudUserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudUserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetBudUserCreateInput

Name Type Nullable
id String No
role String No
ability String No
category String No
budget BudgetCreateNestedOneWithoutUserListInput No
user BudUserCreateNestedOneWithoutBudgetListInput No

BudgetBudUserUncheckedCreateInput

Name Type Nullable
id String No
userId String No
budgetId String No
role String No
ability String No
category String No


BudgetBudUserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

BudgetBudUserCreateManyInput

Name Type Nullable
id String No
userId String No
budgetId String No
role String No
ability String No
category String No

BudgetBudUserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

BudgetBudUserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

BudEventCreateInput

Name Type Nullable
id String No
type String No
description String No
categoryList BudEventCreatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime No
budUser BudUserCreateNestedOneWithoutEventListInput No

BudEventUncheckedCreateInput

Name Type Nullable
id String No
type String No
description String No
categoryList BudEventCreatecategoryListInput | String No
metadata JsonNullValueInput | Json No
budUserId String No
createdAt DateTime No

BudEventUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
budUser BudUserUpdateOneRequiredWithoutEventListNestedInput No

BudEventUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
budUserId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

BudEventCreateManyInput

Name Type Nullable
id String No
type String No
description String No
categoryList BudEventCreatecategoryListInput | String No
metadata JsonNullValueInput | Json No
budUserId String No
createdAt DateTime No

BudEventUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

BudEventUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
budUserId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

UuidFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedUuidFilter No

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedStringFilter No

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes


DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes


DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

UuidNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedUuidNullableFilter | Null Yes

PrincipalNullableRelationFilter

Name Type Nullable
is PrincipalWhereInput | Null Yes
isNot PrincipalWhereInput | Null Yes

PrincipalListRelationFilter

Name Type Nullable
every PrincipalWhereInput No
some PrincipalWhereInput No
none PrincipalWhereInput No

PaymentListRelationFilter

Name Type Nullable
every PaymentWhereInput No
some PaymentWhereInput No
none PaymentWhereInput No

AppointmentListRelationFilter

Name Type Nullable
every AppointmentWhereInput No
some AppointmentWhereInput No
none AppointmentWhereInput No

EquipmentListRelationFilter

Name Type Nullable
every EquipmentWhereInput No
some EquipmentWhereInput No
none EquipmentWhereInput No

PatientListRelationFilter

Name Type Nullable
every PatientWhereInput No
some PatientWhereInput No
none PatientWhereInput No

ServiceListRelationFilter

Name Type Nullable
every ServiceWhereInput No
some ServiceWhereInput No
none ServiceWhereInput No

AccountListRelationFilter

Name Type Nullable
every AccountWhereInput No
some AccountWhereInput No
none AccountWhereInput No

AuthenticatorListRelationFilter

Name Type Nullable
every AuthenticatorWhereInput No
some AuthenticatorWhereInput No
none AuthenticatorWhereInput No

SessionListRelationFilter

Name Type Nullable
every SessionWhereInput No
some SessionWhereInput No
none SessionWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

PrincipalOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PaymentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AppointmentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EquipmentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PatientOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ServiceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AccountOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AuthenticatorOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SessionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PrincipalOrderByRelevanceInput

Name Type Nullable
fields PrincipalOrderByRelevanceFieldEnum | PrincipalOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

PrincipalCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
username SortOrder No
firstName SortOrder No
lastName SortOrder No
password SortOrder No
phoneCode SortOrder No
phoneNumber SortOrder No
streetName SortOrder No
city SortOrder No
areaCode SortOrder No
country SortOrder No
email SortOrder No
emailVerified SortOrder No
payerType SortOrder No
image SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PrincipalAvgOrderByAggregateInput

Name Type Nullable
phoneCode SortOrder No

PrincipalMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
username SortOrder No
firstName SortOrder No
lastName SortOrder No
password SortOrder No
phoneCode SortOrder No
phoneNumber SortOrder No
streetName SortOrder No
city SortOrder No
areaCode SortOrder No
country SortOrder No
email SortOrder No
emailVerified SortOrder No
payerType SortOrder No
image SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PrincipalMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
username SortOrder No
firstName SortOrder No
lastName SortOrder No
password SortOrder No
phoneCode SortOrder No
phoneNumber SortOrder No
streetName SortOrder No
city SortOrder No
areaCode SortOrder No
country SortOrder No
email SortOrder No
emailVerified SortOrder No
payerType SortOrder No
image SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PrincipalSumOrderByAggregateInput

Name Type Nullable
phoneCode SortOrder No

UuidWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedUuidWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No


DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No


DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

UuidNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
mode QueryMode No
not String | NestedUuidNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

PrincipalRelationFilter

Name Type Nullable
is PrincipalWhereInput No
isNot PrincipalWhereInput No

AccountOrderByRelevanceInput

Name Type Nullable
fields AccountOrderByRelevanceFieldEnum | AccountOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

AccountProviderProviderAccountIdCompoundUniqueInput

Name Type Nullable
provider String No
providerAccountId String No

AccountCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

AccountAvgOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

AccountMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

AccountMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

AccountSumOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

SessionOrderByRelevanceInput

Name Type Nullable
fields SessionOrderByRelevanceFieldEnum | SessionOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

SessionCountOrderByAggregateInput

Name Type Nullable
sessionToken SortOrder No
userId SortOrder No
expiresAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

SessionMaxOrderByAggregateInput

Name Type Nullable
sessionToken SortOrder No
userId SortOrder No
expiresAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

SessionMinOrderByAggregateInput

Name Type Nullable
sessionToken SortOrder No
userId SortOrder No
expiresAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

VerificationTokenOrderByRelevanceInput

Name Type Nullable
fields VerificationTokenOrderByRelevanceFieldEnum | VerificationTokenOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

VerificationTokenIdentifierTokenCompoundUniqueInput

Name Type Nullable
identifier String No
token String No

VerificationTokenCountOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMaxOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMinOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

AuthenticatorOrderByRelevanceInput

Name Type Nullable
fields AuthenticatorOrderByRelevanceFieldEnum | AuthenticatorOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

AuthenticatorUserIdCredentialIDCompoundUniqueInput

Name Type Nullable
userId String No
credentialID String No

AuthenticatorCountOrderByAggregateInput

Name Type Nullable
credentialID SortOrder No
userId SortOrder No
providerAccountId SortOrder No
credentialPublicKey SortOrder No
counter SortOrder No
credentialDeviceType SortOrder No
credentialBackedUp SortOrder No
transports SortOrder No

AuthenticatorAvgOrderByAggregateInput

Name Type Nullable
counter SortOrder No

AuthenticatorMaxOrderByAggregateInput

Name Type Nullable
credentialID SortOrder No
userId SortOrder No
providerAccountId SortOrder No
credentialPublicKey SortOrder No
counter SortOrder No
credentialDeviceType SortOrder No
credentialBackedUp SortOrder No
transports SortOrder No

AuthenticatorMinOrderByAggregateInput

Name Type Nullable
credentialID SortOrder No
userId SortOrder No
providerAccountId SortOrder No
credentialPublicKey SortOrder No
counter SortOrder No
credentialDeviceType SortOrder No
credentialBackedUp SortOrder No
transports SortOrder No

AuthenticatorSumOrderByAggregateInput

Name Type Nullable
counter SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No


PatientRelationFilter

Name Type Nullable
is PatientWhereInput No
isNot PatientWhereInput No

PaymentOrderByRelevanceInput

Name Type Nullable
fields PaymentOrderByRelevanceFieldEnum | PaymentOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

PaymentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
payerId SortOrder No
receiverId SortOrder No
paymentMethod SortOrder No
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No
reasonForVisit SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PaymentAvgOrderByAggregateInput

Name Type Nullable
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No

PaymentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
payerId SortOrder No
receiverId SortOrder No
paymentMethod SortOrder No
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No
reasonForVisit SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PaymentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
payerId SortOrder No
receiverId SortOrder No
paymentMethod SortOrder No
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No
reasonForVisit SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PaymentSumOrderByAggregateInput

Name Type Nullable
totalPayableAmount SortOrder No
discountApplied SortOrder No
paidAmount SortOrder No


EnumTimeOfDayNullableFilter

Name Type Nullable
equals TimeOfDay | EnumTimeOfDayFieldRefInput | Null Yes
in TimeOfDay[] | ListEnumTimeOfDayFieldRefInput | Null Yes
notIn TimeOfDay[] | ListEnumTimeOfDayFieldRefInput | Null Yes
not TimeOfDay | NestedEnumTimeOfDayNullableFilter | Null Yes

BoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

AppointmentTypeNullableRelationFilter

Name Type Nullable
is AppointmentTypeWhereInput | Null Yes
isNot AppointmentTypeWhereInput | Null Yes

LocationNullableRelationFilter

Name Type Nullable
is LocationWhereInput | Null Yes
isNot LocationWhereInput | Null Yes

ProviderNullableRelationFilter

Name Type Nullable
is ProviderWhereInput | Null Yes
isNot ProviderWhereInput | Null Yes

AppointmentOrderByRelevanceInput

Name Type Nullable
fields AppointmentOrderByRelevanceFieldEnum | AppointmentOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

AppointmentPatientIdLocationIdProviderIdCompoundUniqueInput

Name Type Nullable
patientId String No
locationId String No
providerId String No

AppointmentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
date SortOrder No
startTime SortOrder No
endTime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
appointmentTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
providerId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

AppointmentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
date SortOrder No
startTime SortOrder No
endTime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
appointmentTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
providerId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

AppointmentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
date SortOrder No
startTime SortOrder No
endTime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
appointmentTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
providerId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No


BoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

AppointmentTypeOrderByRelevanceInput

Name Type Nullable
fields AppointmentTypeOrderByRelevanceFieldEnum | AppointmentTypeOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

AppointmentTypeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
duration SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

AppointmentTypeAvgOrderByAggregateInput

Name Type Nullable
duration SortOrder No

AppointmentTypeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
duration SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

AppointmentTypeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
duration SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

AppointmentTypeSumOrderByAggregateInput

Name Type Nullable
duration SortOrder No

FloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

EncounterListRelationFilter

Name Type Nullable
every EncounterWhereInput No
some EncounterWhereInput No
none EncounterWhereInput No

EncounterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LocationOrderByRelevanceInput

Name Type Nullable
fields LocationOrderByRelevanceFieldEnum | LocationOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

LocationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
address1 SortOrder No
address2 SortOrder No
city SortOrder No
stateProvince SortOrder No
country SortOrder No
postalCode SortOrder No
latitude SortOrder No
longitude SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

LocationAvgOrderByAggregateInput

Name Type Nullable
latitude SortOrder No
longitude SortOrder No

LocationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
address1 SortOrder No
address2 SortOrder No
city SortOrder No
stateProvince SortOrder No
country SortOrder No
postalCode SortOrder No
latitude SortOrder No
longitude SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

LocationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
address1 SortOrder No
address2 SortOrder No
city SortOrder No
stateProvince SortOrder No
country SortOrder No
postalCode SortOrder No
latitude SortOrder No
longitude SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

LocationSumOrderByAggregateInput

Name Type Nullable
latitude SortOrder No
longitude SortOrder No

FloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

EnumGenderFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput No
in Gender[] | ListEnumGenderFieldRefInput No
notIn Gender[] | ListEnumGenderFieldRefInput No
not Gender | NestedEnumGenderFilter No

PatientOrderByRelevanceInput

Name Type Nullable
fields PatientOrderByRelevanceFieldEnum | PatientOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

PatientCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
givenName SortOrder No
middleName SortOrder No
familyName SortOrder No
gender SortOrder No
birthdate SortOrder No
phoneCode SortOrder No
phoneNumber SortOrder No
image SortOrder No
streetName SortOrder No
city SortOrder No
areaCode SortOrder No
country SortOrder No
email SortOrder No
emailVerified SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PatientAvgOrderByAggregateInput

Name Type Nullable
phoneCode SortOrder No

PatientMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
givenName SortOrder No
middleName SortOrder No
familyName SortOrder No
gender SortOrder No
birthdate SortOrder No
phoneCode SortOrder No
phoneNumber SortOrder No
image SortOrder No
streetName SortOrder No
city SortOrder No
areaCode SortOrder No
country SortOrder No
email SortOrder No
emailVerified SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PatientMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
givenName SortOrder No
middleName SortOrder No
familyName SortOrder No
gender SortOrder No
birthdate SortOrder No
phoneCode SortOrder No
phoneNumber SortOrder No
image SortOrder No
streetName SortOrder No
city SortOrder No
areaCode SortOrder No
country SortOrder No
email SortOrder No
emailVerified SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

PatientSumOrderByAggregateInput

Name Type Nullable
phoneCode SortOrder No


EquipmentOrderByRelevanceInput

Name Type Nullable
fields EquipmentOrderByRelevanceFieldEnum | EquipmentOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

EquipmentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
price SortOrder No
count SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

EquipmentAvgOrderByAggregateInput

Name Type Nullable
price SortOrder No
count SortOrder No

EquipmentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
price SortOrder No
count SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

EquipmentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
price SortOrder No
count SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

EquipmentSumOrderByAggregateInput

Name Type Nullable
price SortOrder No
count SortOrder No

ServiceOrderByRelevanceInput

Name Type Nullable
fields ServiceOrderByRelevanceFieldEnum | ServiceOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ServiceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
price SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

ServiceAvgOrderByAggregateInput

Name Type Nullable
price SortOrder No

ServiceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
price SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

ServiceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
price SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
createdBy SortOrder No
updatedBy SortOrder No

ServiceSumOrderByAggregateInput

Name Type Nullable
price SortOrder No

ProviderOrderByRelevanceInput

Name Type Nullable
fields ProviderOrderByRelevanceFieldEnum | ProviderOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ProviderCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
identifier SortOrder No
description SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ProviderMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
identifier SortOrder No
description SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ProviderMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
identifier SortOrder No
description SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldNullableRelationFilter

Name Type Nullable
is FieldWhereInput | Null Yes
isNot FieldWhereInput | Null Yes

FormEncounterListRelationFilter

Name Type Nullable
every FormEncounterWhereInput No
some FormEncounterWhereInput No
none FormEncounterWhereInput No

FormResourceListRelationFilter

Name Type Nullable
every FormResourceWhereInput No
some FormResourceWhereInput No
none FormResourceWhereInput No

FormSubmissionListRelationFilter

Name Type Nullable
every FormSubmissionWhereInput No
some FormSubmissionWhereInput No
none FormSubmissionWhereInput No

FormEncounterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FormResourceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FormSubmissionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FormOrderByRelevanceInput

Name Type Nullable
fields FormOrderByRelevanceFieldEnum | FormOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FormCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
version SortOrder No
retired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
fieldId SortOrder No

FormMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
version SortOrder No
retired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
fieldId SortOrder No

FormMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
version SortOrder No
retired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
fieldId SortOrder No

EncounterRelationFilter

Name Type Nullable
is EncounterWhereInput No
isNot EncounterWhereInput No

FormRelationFilter

Name Type Nullable
is FormWhereInput No
isNot FormWhereInput No

FormEncounterOrderByRelevanceInput

Name Type Nullable
fields FormEncounterOrderByRelevanceFieldEnum | FormEncounterOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FormEncounterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FormEncounterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FormEncounterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ResourceRelationFilter

Name Type Nullable
is ResourceWhereInput No
isNot ResourceWhereInput No

FormResourceOrderByRelevanceInput

Name Type Nullable
fields FormResourceOrderByRelevanceFieldEnum | FormResourceOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FormResourceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
resourceId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FormResourceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
resourceId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FormResourceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
resourceId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldAnswerListRelationFilter

Name Type Nullable
every FieldAnswerWhereInput No
some FieldAnswerWhereInput No
none FieldAnswerWhereInput No

FieldAnswerOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FormSubmissionOrderByRelevanceInput

Name Type Nullable
fields FormSubmissionOrderByRelevanceFieldEnum | FormSubmissionOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FormSubmissionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
submissionDate SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FormSubmissionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
submissionDate SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FormSubmissionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formId SortOrder No
encounterId SortOrder No
submissionDate SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptRelationFilter

Name Type Nullable
is ConceptWhereInput No
isNot ConceptWhereInput No

FieldOptionListRelationFilter

Name Type Nullable
every FieldOptionWhereInput No
some FieldOptionWhereInput No
none FieldOptionWhereInput No

FormListRelationFilter

Name Type Nullable
every FormWhereInput No
some FormWhereInput No
none FormWhereInput No

FieldOptionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FormOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FieldOrderByRelevanceInput

Name Type Nullable
fields FieldOrderByRelevanceFieldEnum | FieldOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FieldCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
fieldType SortOrder No
conceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
fieldType SortOrder No
conceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
fieldType SortOrder No
conceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldRelationFilter

Name Type Nullable
is FieldWhereInput No
isNot FieldWhereInput No

FormSubmissionRelationFilter

Name Type Nullable
is FormSubmissionWhereInput No
isNot FormSubmissionWhereInput No

FieldAnswerOrderByRelevanceInput

Name Type Nullable
fields FieldAnswerOrderByRelevanceFieldEnum | FieldAnswerOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FieldAnswerCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formSubmissionId SortOrder No
fieldId SortOrder No
value SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldAnswerMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formSubmissionId SortOrder No
fieldId SortOrder No
value SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldAnswerMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
formSubmissionId SortOrder No
fieldId SortOrder No
value SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldOptionOrderByRelevanceInput

Name Type Nullable
fields FieldOptionOrderByRelevanceFieldEnum | FieldOptionOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

FieldOptionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
fieldId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldOptionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
fieldId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

FieldOptionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
fieldId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

EncounterTypeRelationFilter

Name Type Nullable
is EncounterTypeWhereInput No
isNot EncounterTypeWhereInput No

LocationRelationFilter

Name Type Nullable
is LocationWhereInput No
isNot LocationWhereInput No

ProviderRelationFilter

Name Type Nullable
is ProviderWhereInput No
isNot ProviderWhereInput No

ObsListRelationFilter

Name Type Nullable
every ObsWhereInput No
some ObsWhereInput No
none ObsWhereInput No

OrderListRelationFilter

Name Type Nullable
every OrderWhereInput No
some OrderWhereInput No
none OrderWhereInput No

ObsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

OrderOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EncounterOrderByRelevanceInput

Name Type Nullable
fields EncounterOrderByRelevanceFieldEnum | EncounterOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

EncounterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
encounterTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
formId SortOrder No
providerId SortOrder No
startDatetime SortOrder No
endDatetime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

EncounterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
encounterTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
formId SortOrder No
providerId SortOrder No
startDatetime SortOrder No
endDatetime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

EncounterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
encounterTypeId SortOrder No
patientId SortOrder No
locationId SortOrder No
formId SortOrder No
providerId SortOrder No
startDatetime SortOrder No
endDatetime SortOrder No
voided SortOrder No
voidedBy SortOrder No
dateVoided SortOrder No
voidReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

EncounterTypeOrderByRelevanceInput

Name Type Nullable
fields EncounterTypeOrderByRelevanceFieldEnum | EncounterTypeOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

EncounterTypeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

EncounterTypeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

EncounterTypeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ObsOrderByRelevanceInput

Name Type Nullable
fields ObsOrderByRelevanceFieldEnum | ObsOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ObsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
obsDatetime SortOrder No
valueDatetime SortOrder No
valueNumeric SortOrder No
valueText SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ObsAvgOrderByAggregateInput

Name Type Nullable
valueNumeric SortOrder No

ObsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
obsDatetime SortOrder No
valueDatetime SortOrder No
valueNumeric SortOrder No
valueText SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ObsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
obsDatetime SortOrder No
valueDatetime SortOrder No
valueNumeric SortOrder No
valueText SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ObsSumOrderByAggregateInput

Name Type Nullable
valueNumeric SortOrder No

OrderFrequencyNullableRelationFilter

Name Type Nullable
is OrderFrequencyWhereInput | Null Yes
isNot OrderFrequencyWhereInput | Null Yes

OrderRouteNullableRelationFilter

Name Type Nullable
is OrderRouteWhereInput | Null Yes
isNot OrderRouteWhereInput | Null Yes

OrderTypeNullableRelationFilter

Name Type Nullable
is OrderTypeWhereInput | Null Yes
isNot OrderTypeWhereInput | Null Yes

OrderUnitNullableRelationFilter

Name Type Nullable
is OrderUnitWhereInput | Null Yes
isNot OrderUnitWhereInput | Null Yes

OrderOrderByRelevanceInput

Name Type Nullable
fields OrderOrderByRelevanceFieldEnum | OrderOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

OrderCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
orderDatetime SortOrder No
instructions SortOrder No
dosage SortOrder No
route SortOrder No
frequency SortOrder No
asNeeded SortOrder No
prn SortOrder No
quantity SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderFrequencyId SortOrder No
orderRouteId SortOrder No
orderTypeId SortOrder No
orderUnitId SortOrder No

OrderAvgOrderByAggregateInput

Name Type Nullable
quantity SortOrder No

OrderMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
orderDatetime SortOrder No
instructions SortOrder No
dosage SortOrder No
route SortOrder No
frequency SortOrder No
asNeeded SortOrder No
prn SortOrder No
quantity SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderFrequencyId SortOrder No
orderRouteId SortOrder No
orderTypeId SortOrder No
orderUnitId SortOrder No

OrderMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
encounterId SortOrder No
orderDatetime SortOrder No
instructions SortOrder No
dosage SortOrder No
route SortOrder No
frequency SortOrder No
asNeeded SortOrder No
prn SortOrder No
quantity SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
orderFrequencyId SortOrder No
orderRouteId SortOrder No
orderTypeId SortOrder No
orderUnitId SortOrder No

OrderSumOrderByAggregateInput

Name Type Nullable
quantity SortOrder No

OrderFrequencyOrderByRelevanceInput

Name Type Nullable
fields OrderFrequencyOrderByRelevanceFieldEnum | OrderFrequencyOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

OrderFrequencyCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderFrequencyMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderFrequencyMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderRouteOrderByRelevanceInput

Name Type Nullable
fields OrderRouteOrderByRelevanceFieldEnum | OrderRouteOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

OrderRouteCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderRouteMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderRouteMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderTypeOrderByRelevanceInput

Name Type Nullable
fields OrderTypeOrderByRelevanceFieldEnum | OrderTypeOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

OrderTypeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderTypeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderTypeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderUnitOrderByRelevanceInput

Name Type Nullable
fields OrderUnitOrderByRelevanceFieldEnum | OrderUnitOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

OrderUnitCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderUnitMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

OrderUnitMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptClassNullableRelationFilter

Name Type Nullable
is ConceptClassWhereInput | Null Yes
isNot ConceptClassWhereInput | Null Yes

ConceptDatatypeNullableRelationFilter

Name Type Nullable
is ConceptDatatypeWhereInput | Null Yes
isNot ConceptDatatypeWhereInput | Null Yes

ConceptMapNullableRelationFilter

Name Type Nullable
is ConceptMapWhereInput | Null Yes
isNot ConceptMapWhereInput | Null Yes

ConceptSetNullableRelationFilter

Name Type Nullable
is ConceptSetWhereInput | Null Yes
isNot ConceptSetWhereInput | Null Yes

ConceptSourceNullableRelationFilter

Name Type Nullable
is ConceptSourceWhereInput | Null Yes
isNot ConceptSourceWhereInput | Null Yes

ConceptAnswerListRelationFilter

Name Type Nullable
every ConceptAnswerWhereInput No
some ConceptAnswerWhereInput No
none ConceptAnswerWhereInput No

ConceptNameListRelationFilter

Name Type Nullable
every ConceptNameWhereInput No
some ConceptNameWhereInput No
none ConceptNameWhereInput No

ConceptNumericListRelationFilter

Name Type Nullable
every ConceptNumericWhereInput No
some ConceptNumericWhereInput No
none ConceptNumericWhereInput No

ConceptProposalListRelationFilter

Name Type Nullable
every ConceptProposalWhereInput No
some ConceptProposalWhereInput No
none ConceptProposalWhereInput No

ConceptWordListRelationFilter

Name Type Nullable
every ConceptWordWhereInput No
some ConceptWordWhereInput No
none ConceptWordWhereInput No

FieldListRelationFilter

Name Type Nullable
every FieldWhereInput No
some FieldWhereInput No
none FieldWhereInput No

ConceptAnswerOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptNameOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptNumericOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptProposalOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptWordOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FieldOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptOrderByRelevanceInput

Name Type Nullable
fields ConceptOrderByRelevanceFieldEnum | ConceptOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
dataType SortOrder No
class SortOrder No
isRetired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptClassId SortOrder No
conceptDatatypeId SortOrder No
conceptMapId SortOrder No
conceptSetId SortOrder No
conceptSourceId SortOrder No

ConceptMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
dataType SortOrder No
class SortOrder No
isRetired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptClassId SortOrder No
conceptDatatypeId SortOrder No
conceptMapId SortOrder No
conceptSetId SortOrder No
conceptSourceId SortOrder No

ConceptMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
dataType SortOrder No
class SortOrder No
isRetired SortOrder No
retiredBy SortOrder No
dateRetired SortOrder No
retiredReason SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No
conceptClassId SortOrder No
conceptDatatypeId SortOrder No
conceptMapId SortOrder No
conceptSetId SortOrder No
conceptSourceId SortOrder No

ConceptAnswerOrderByRelevanceInput

Name Type Nullable
fields ConceptAnswerOrderByRelevanceFieldEnum | ConceptAnswerOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptAnswerCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
answerConceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptAnswerMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
answerConceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptAnswerMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
answerConceptId SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptListRelationFilter

Name Type Nullable
every ConceptWhereInput No
some ConceptWhereInput No
none ConceptWhereInput No

ConceptOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptClassOrderByRelevanceInput

Name Type Nullable
fields ConceptClassOrderByRelevanceFieldEnum | ConceptClassOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptClassCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptClassMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptClassMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptDatatypeOrderByRelevanceInput

Name Type Nullable
fields ConceptDatatypeOrderByRelevanceFieldEnum | ConceptDatatypeOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptDatatypeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptDatatypeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptDatatypeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptMapOrderByRelevanceInput

Name Type Nullable
fields ConceptMapOrderByRelevanceFieldEnum | ConceptMapOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptMapCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptMapMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptMapMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNameOrderByRelevanceInput

Name Type Nullable
fields ConceptNameOrderByRelevanceFieldEnum | ConceptNameOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptNameCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNameMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNameMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNumericOrderByRelevanceInput

Name Type Nullable
fields ConceptNumericOrderByRelevanceFieldEnum | ConceptNumericOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptNumericCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNumericAvgOrderByAggregateInput

Name Type Nullable
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No

ConceptNumericMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNumericMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No
units SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptNumericSumOrderByAggregateInput

Name Type Nullable
hiAbsolute SortOrder No
hiCritical SortOrder No
hiNormal SortOrder No
lowAbsolute SortOrder No
lowCritical SortOrder No
lowNormal SortOrder No

ConceptProposalOrderByRelevanceInput

Name Type Nullable
fields ConceptProposalOrderByRelevanceFieldEnum | ConceptProposalOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptProposalCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptProposalMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptProposalMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptSetOrderByRelevanceInput

Name Type Nullable
fields ConceptSetOrderByRelevanceFieldEnum | ConceptSetOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptSetCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptSetMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptSetMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptSourceOrderByRelevanceInput

Name Type Nullable
fields ConceptSourceOrderByRelevanceFieldEnum | ConceptSourceOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptSourceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptSourceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptSourceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptWordOrderByRelevanceInput

Name Type Nullable
fields ConceptWordOrderByRelevanceFieldEnum | ConceptWordOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ConceptWordCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
word SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptWordMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
word SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ConceptWordMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
conceptId SortOrder No
word SortOrder No
locale SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ResourceOrderByRelevanceInput

Name Type Nullable
fields ResourceOrderByRelevanceFieldEnum | ResourceOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ResourceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ResourceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

ResourceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
name SortOrder No
description SortOrder No
creator SortOrder No
dateCreated SortOrder No
lastChangedBy SortOrder No
lastChangedDate SortOrder No

JsonFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

BlogPostAuthorRelationFilter

Name Type Nullable
is BlogPostAuthorWhereInput No
isNot BlogPostAuthorWhereInput No

SpaceTimeCoordinatesRelationFilter

Name Type Nullable
is SpaceTimeCoordinatesWhereInput No
isNot SpaceTimeCoordinatesWhereInput No

BlogPostTagArrowListRelationFilter

Name Type Nullable
every BlogPostTagArrowWhereInput No
some BlogPostTagArrowWhereInput No
none BlogPostTagArrowWhereInput No

BlogPostTagArrowOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BlogPostOrderByRelevanceInput

Name Type Nullable
fields BlogPostOrderByRelevanceFieldEnum | BlogPostOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BlogPostCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
content SortOrder No
context SortOrder No
authorId SortOrder No
spaceTimeCoordinatesId SortOrder No

BlogPostMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
content SortOrder No
authorId SortOrder No
spaceTimeCoordinatesId SortOrder No

BlogPostMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
content SortOrder No
authorId SortOrder No
spaceTimeCoordinatesId SortOrder No

JsonWithAggregatesFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No

BlogPostTagOrderByRelevanceInput

Name Type Nullable
fields BlogPostTagOrderByRelevanceFieldEnum | BlogPostTagOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BlogPostTagCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
descriptor SortOrder No

BlogPostTagMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
descriptor SortOrder No

BlogPostTagMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
descriptor SortOrder No

BlogPostRelationFilter

Name Type Nullable
is BlogPostWhereInput No
isNot BlogPostWhereInput No

BlogPostTagRelationFilter

Name Type Nullable
is BlogPostTagWhereInput No
isNot BlogPostTagWhereInput No

BlogPostTagArrowOrderByRelevanceInput

Name Type Nullable
fields BlogPostTagArrowOrderByRelevanceFieldEnum | BlogPostTagArrowOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BlogPostTagArrowPostIdTagIdCompoundUniqueInput

Name Type Nullable
postId String No
tagId String No

BlogPostTagArrowCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
tagId SortOrder No

BlogPostTagArrowMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
tagId SortOrder No

BlogPostTagArrowMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
tagId SortOrder No

BlogPostListRelationFilter

Name Type Nullable
every BlogPostWhereInput No
some BlogPostWhereInput No
none BlogPostWhereInput No

BlogPostOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BlogPostAuthorOrderByRelevanceInput

Name Type Nullable
fields BlogPostAuthorOrderByRelevanceFieldEnum | BlogPostAuthorOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BlogPostAuthorCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

BlogPostAuthorMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

BlogPostAuthorMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

FloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

BlogPostNullableRelationFilter

Name Type Nullable
is BlogPostWhereInput | Null Yes
isNot BlogPostWhereInput | Null Yes

SpaceTimeCoordinatesOrderByRelevanceInput

Name Type Nullable
fields SpaceTimeCoordinatesOrderByRelevanceFieldEnum | SpaceTimeCoordinatesOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

SpaceTimeCoordinatesCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder No
stopTime SortOrder No
timezone SortOrder No
blogPostId SortOrder No

SpaceTimeCoordinatesAvgOrderByAggregateInput

Name Type Nullable
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder No
stopTime SortOrder No

SpaceTimeCoordinatesMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder No
stopTime SortOrder No
timezone SortOrder No
blogPostId SortOrder No

SpaceTimeCoordinatesMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder No
stopTime SortOrder No
timezone SortOrder No
blogPostId SortOrder No

SpaceTimeCoordinatesSumOrderByAggregateInput

Name Type Nullable
latitude SortOrder No
longitude SortOrder No
startTime SortOrder No
pauseTime SortOrder No
stopTime SortOrder No

FloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No

BudgetRelationFilter

Name Type Nullable
is BudgetWhereInput No
isNot BudgetWhereInput No

BudgetServiceRelationFilter

Name Type Nullable
is BudgetServiceWhereInput No
isNot BudgetServiceWhereInput No

BudgetEntryOrderByRelevanceInput

Name Type Nullable
fields BudgetEntryOrderByRelevanceFieldEnum | BudgetEntryOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BudgetEntryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
serviceId SortOrder No
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
budgetId SortOrder No

BudgetEntryAvgOrderByAggregateInput

Name Type Nullable
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No

BudgetEntryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
serviceId SortOrder No
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
budgetId SortOrder No

BudgetEntryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
serviceId SortOrder No
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
budgetId SortOrder No

BudgetEntrySumOrderByAggregateInput

Name Type Nullable
cost SortOrder No
discount SortOrder No
promotion SortOrder No
subtotal SortOrder No
percentChange SortOrder No

BudgetEntryListRelationFilter

Name Type Nullable
every BudgetEntryWhereInput No
some BudgetEntryWhereInput No
none BudgetEntryWhereInput No

BudgetEntryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BudgetServiceOrderByRelevanceInput

Name Type Nullable
fields BudgetServiceOrderByRelevanceFieldEnum | BudgetServiceOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BudgetServiceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
description SortOrder No
category SortOrder No
metadata SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

BudgetServiceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
description SortOrder No
category SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

BudgetServiceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
description SortOrder No
category SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

BudgetBudUserListRelationFilter

Name Type Nullable
every BudgetBudUserWhereInput No
some BudgetBudUserWhereInput No
none BudgetBudUserWhereInput No

ReportNullableRelationFilter

Name Type Nullable
is ReportWhereInput | Null Yes
isNot ReportWhereInput | Null Yes

BudgetBudUserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BudgetOrderByRelevanceInput

Name Type Nullable
fields BudgetOrderByRelevanceFieldEnum | BudgetOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BudgetCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
fiscalYear SortOrder No
reportId SortOrder No

BudgetAvgOrderByAggregateInput

Name Type Nullable
fiscalYear SortOrder No

BudgetMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
fiscalYear SortOrder No
reportId SortOrder No

BudgetMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
fiscalYear SortOrder No
reportId SortOrder No

BudgetSumOrderByAggregateInput

Name Type Nullable
fiscalYear SortOrder No

ReportOrderByRelevanceInput

Name Type Nullable
fields ReportOrderByRelevanceFieldEnum | ReportOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

ReportCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
budgetId SortOrder No
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

ReportAvgOrderByAggregateInput

Name Type Nullable
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No

ReportMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
budgetId SortOrder No
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

ReportMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
budgetId SortOrder No
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

ReportSumOrderByAggregateInput

Name Type Nullable
totalCost SortOrder No
totalDiscount SortOrder No
totalPromotion SortOrder No
totalSubtotal SortOrder No

BudEventListRelationFilter

Name Type Nullable
every BudEventWhereInput No
some BudEventWhereInput No
none BudEventWhereInput No

BudEventOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BudUserOrderByRelevanceInput

Name Type Nullable
fields BudUserOrderByRelevanceFieldEnum | BudUserOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BudUserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

BudUserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

BudUserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

BudUserRelationFilter

Name Type Nullable
is BudUserWhereInput No
isNot BudUserWhereInput No

BudgetBudUserOrderByRelevanceInput

Name Type Nullable
fields BudgetBudUserOrderByRelevanceFieldEnum | BudgetBudUserOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BudgetBudUserUserIdBudgetIdCompoundUniqueInput

Name Type Nullable
userId String No
budgetId String No

BudgetBudUserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
budgetId SortOrder No
role SortOrder No
ability SortOrder No
category SortOrder No

BudgetBudUserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
budgetId SortOrder No
role SortOrder No
ability SortOrder No
category SortOrder No

BudgetBudUserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
budgetId SortOrder No
role SortOrder No
ability SortOrder No
category SortOrder No

StringNullableListFilter

Name Type Nullable
equals String | ListStringFieldRefInput | Null Yes
has String | StringFieldRefInput | Null Yes
hasEvery String | ListStringFieldRefInput No
hasSome String | ListStringFieldRefInput No
isEmpty Boolean No

BudEventOrderByRelevanceInput

Name Type Nullable
fields BudEventOrderByRelevanceFieldEnum | BudEventOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

BudEventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
description SortOrder No
categoryList SortOrder No
metadata SortOrder No
budUserId SortOrder No
createdAt SortOrder No

BudEventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
description SortOrder No
budUserId SortOrder No
createdAt SortOrder No

BudEventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
description SortOrder No
budUserId SortOrder No
createdAt SortOrder No

PrincipalCreateNestedOneWithoutCreatedPrincipalsInput

Name Type Nullable
create PrincipalCreateWithoutCreatedPrincipalsInput | PrincipalUncheckedCreateWithoutCreatedPrincipalsInput No
connectOrCreate PrincipalCreateOrConnectWithoutCreatedPrincipalsInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput

Name Type Nullable
create PrincipalCreateWithoutUpdatedPrincipalsInput | PrincipalUncheckedCreateWithoutUpdatedPrincipalsInput No
connectOrCreate PrincipalCreateOrConnectWithoutUpdatedPrincipalsInput No
connect PrincipalWhereUniqueInput No

































StringFieldUpdateOperationsInput

Name Type Nullable
set String No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

EnumCountryFieldUpdateOperationsInput

Name Type Nullable
set Country No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

EnumDiscountTypeFieldUpdateOperationsInput

Name Type Nullable
set DiscountType No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No



PrincipalUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create PrincipalCreateWithoutCreatorInput | PrincipalCreateWithoutCreatorInput[] | PrincipalUncheckedCreateWithoutCreatorInput | PrincipalUncheckedCreateWithoutCreatorInput[] No
connectOrCreate PrincipalCreateOrConnectWithoutCreatorInput | PrincipalCreateOrConnectWithoutCreatorInput[] No
upsert PrincipalUpsertWithWhereUniqueWithoutCreatorInput | PrincipalUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany PrincipalCreateManyCreatorInputEnvelope No
set PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
disconnect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
delete PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
connect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
update PrincipalUpdateWithWhereUniqueWithoutCreatorInput | PrincipalUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany PrincipalUpdateManyWithWhereWithoutCreatorInput | PrincipalUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany PrincipalScalarWhereInput | PrincipalScalarWhereInput[] No

PrincipalUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create PrincipalCreateWithoutUpdaterInput | PrincipalCreateWithoutUpdaterInput[] | PrincipalUncheckedCreateWithoutUpdaterInput | PrincipalUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate PrincipalCreateOrConnectWithoutUpdaterInput | PrincipalCreateOrConnectWithoutUpdaterInput[] No
upsert PrincipalUpsertWithWhereUniqueWithoutUpdaterInput | PrincipalUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany PrincipalCreateManyUpdaterInputEnvelope No
set PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
disconnect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
delete PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
connect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
update PrincipalUpdateWithWhereUniqueWithoutUpdaterInput | PrincipalUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany PrincipalUpdateManyWithWhereWithoutUpdaterInput | PrincipalUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany PrincipalScalarWhereInput | PrincipalScalarWhereInput[] No

PaymentUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create PaymentCreateWithoutCreatorInput | PaymentCreateWithoutCreatorInput[] | PaymentUncheckedCreateWithoutCreatorInput | PaymentUncheckedCreateWithoutCreatorInput[] No
connectOrCreate PaymentCreateOrConnectWithoutCreatorInput | PaymentCreateOrConnectWithoutCreatorInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutCreatorInput | PaymentUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany PaymentCreateManyCreatorInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutCreatorInput | PaymentUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany PaymentUpdateManyWithWhereWithoutCreatorInput | PaymentUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

PaymentUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create PaymentCreateWithoutUpdaterInput | PaymentCreateWithoutUpdaterInput[] | PaymentUncheckedCreateWithoutUpdaterInput | PaymentUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate PaymentCreateOrConnectWithoutUpdaterInput | PaymentCreateOrConnectWithoutUpdaterInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutUpdaterInput | PaymentUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany PaymentCreateManyUpdaterInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutUpdaterInput | PaymentUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany PaymentUpdateManyWithWhereWithoutUpdaterInput | PaymentUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

AppointmentUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create AppointmentCreateWithoutCreatorInput | AppointmentCreateWithoutCreatorInput[] | AppointmentUncheckedCreateWithoutCreatorInput | AppointmentUncheckedCreateWithoutCreatorInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutCreatorInput | AppointmentCreateOrConnectWithoutCreatorInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutCreatorInput | AppointmentUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany AppointmentCreateManyCreatorInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutCreatorInput | AppointmentUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutCreatorInput | AppointmentUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

AppointmentUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create AppointmentCreateWithoutUpdaterInput | AppointmentCreateWithoutUpdaterInput[] | AppointmentUncheckedCreateWithoutUpdaterInput | AppointmentUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutUpdaterInput | AppointmentCreateOrConnectWithoutUpdaterInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutUpdaterInput | AppointmentUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany AppointmentCreateManyUpdaterInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutUpdaterInput | AppointmentUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutUpdaterInput | AppointmentUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EquipmentUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create EquipmentCreateWithoutCreatorInput | EquipmentCreateWithoutCreatorInput[] | EquipmentUncheckedCreateWithoutCreatorInput | EquipmentUncheckedCreateWithoutCreatorInput[] No
connectOrCreate EquipmentCreateOrConnectWithoutCreatorInput | EquipmentCreateOrConnectWithoutCreatorInput[] No
upsert EquipmentUpsertWithWhereUniqueWithoutCreatorInput | EquipmentUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany EquipmentCreateManyCreatorInputEnvelope No
set EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
disconnect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
delete EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
connect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
update EquipmentUpdateWithWhereUniqueWithoutCreatorInput | EquipmentUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany EquipmentUpdateManyWithWhereWithoutCreatorInput | EquipmentUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany EquipmentScalarWhereInput | EquipmentScalarWhereInput[] No

EquipmentUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create EquipmentCreateWithoutUpdaterInput | EquipmentCreateWithoutUpdaterInput[] | EquipmentUncheckedCreateWithoutUpdaterInput | EquipmentUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate EquipmentCreateOrConnectWithoutUpdaterInput | EquipmentCreateOrConnectWithoutUpdaterInput[] No
upsert EquipmentUpsertWithWhereUniqueWithoutUpdaterInput | EquipmentUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany EquipmentCreateManyUpdaterInputEnvelope No
set EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
disconnect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
delete EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
connect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
update EquipmentUpdateWithWhereUniqueWithoutUpdaterInput | EquipmentUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany EquipmentUpdateManyWithWhereWithoutUpdaterInput | EquipmentUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany EquipmentScalarWhereInput | EquipmentScalarWhereInput[] No

PatientUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create PatientCreateWithoutCreatorInput | PatientCreateWithoutCreatorInput[] | PatientUncheckedCreateWithoutCreatorInput | PatientUncheckedCreateWithoutCreatorInput[] No
connectOrCreate PatientCreateOrConnectWithoutCreatorInput | PatientCreateOrConnectWithoutCreatorInput[] No
upsert PatientUpsertWithWhereUniqueWithoutCreatorInput | PatientUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany PatientCreateManyCreatorInputEnvelope No
set PatientWhereUniqueInput | PatientWhereUniqueInput[] No
disconnect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
delete PatientWhereUniqueInput | PatientWhereUniqueInput[] No
connect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
update PatientUpdateWithWhereUniqueWithoutCreatorInput | PatientUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany PatientUpdateManyWithWhereWithoutCreatorInput | PatientUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany PatientScalarWhereInput | PatientScalarWhereInput[] No

PatientUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create PatientCreateWithoutUpdaterInput | PatientCreateWithoutUpdaterInput[] | PatientUncheckedCreateWithoutUpdaterInput | PatientUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate PatientCreateOrConnectWithoutUpdaterInput | PatientCreateOrConnectWithoutUpdaterInput[] No
upsert PatientUpsertWithWhereUniqueWithoutUpdaterInput | PatientUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany PatientCreateManyUpdaterInputEnvelope No
set PatientWhereUniqueInput | PatientWhereUniqueInput[] No
disconnect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
delete PatientWhereUniqueInput | PatientWhereUniqueInput[] No
connect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
update PatientUpdateWithWhereUniqueWithoutUpdaterInput | PatientUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany PatientUpdateManyWithWhereWithoutUpdaterInput | PatientUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany PatientScalarWhereInput | PatientScalarWhereInput[] No

ServiceUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create ServiceCreateWithoutCreatorInput | ServiceCreateWithoutCreatorInput[] | ServiceUncheckedCreateWithoutCreatorInput | ServiceUncheckedCreateWithoutCreatorInput[] No
connectOrCreate ServiceCreateOrConnectWithoutCreatorInput | ServiceCreateOrConnectWithoutCreatorInput[] No
upsert ServiceUpsertWithWhereUniqueWithoutCreatorInput | ServiceUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany ServiceCreateManyCreatorInputEnvelope No
set ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
disconnect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
delete ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
connect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
update ServiceUpdateWithWhereUniqueWithoutCreatorInput | ServiceUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany ServiceUpdateManyWithWhereWithoutCreatorInput | ServiceUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany ServiceScalarWhereInput | ServiceScalarWhereInput[] No

ServiceUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create ServiceCreateWithoutUpdaterInput | ServiceCreateWithoutUpdaterInput[] | ServiceUncheckedCreateWithoutUpdaterInput | ServiceUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate ServiceCreateOrConnectWithoutUpdaterInput | ServiceCreateOrConnectWithoutUpdaterInput[] No
upsert ServiceUpsertWithWhereUniqueWithoutUpdaterInput | ServiceUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany ServiceCreateManyUpdaterInputEnvelope No
set ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
disconnect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
delete ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
connect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
update ServiceUpdateWithWhereUniqueWithoutUpdaterInput | ServiceUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany ServiceUpdateManyWithWhereWithoutUpdaterInput | ServiceUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany ServiceScalarWhereInput | ServiceScalarWhereInput[] No

AccountUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

AuthenticatorUpdateManyWithoutUserNestedInput

Name Type Nullable
create AuthenticatorCreateWithoutUserInput | AuthenticatorCreateWithoutUserInput[] | AuthenticatorUncheckedCreateWithoutUserInput | AuthenticatorUncheckedCreateWithoutUserInput[] No
connectOrCreate AuthenticatorCreateOrConnectWithoutUserInput | AuthenticatorCreateOrConnectWithoutUserInput[] No
upsert AuthenticatorUpsertWithWhereUniqueWithoutUserInput | AuthenticatorUpsertWithWhereUniqueWithoutUserInput[] No
createMany AuthenticatorCreateManyUserInputEnvelope No
set AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
disconnect AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
delete AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
connect AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
update AuthenticatorUpdateWithWhereUniqueWithoutUserInput | AuthenticatorUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AuthenticatorUpdateManyWithWhereWithoutUserInput | AuthenticatorUpdateManyWithWhereWithoutUserInput[] No
deleteMany AuthenticatorScalarWhereInput | AuthenticatorScalarWhereInput[] No

PaymentUpdateManyWithoutReceiverNestedInput

Name Type Nullable
create PaymentCreateWithoutReceiverInput | PaymentCreateWithoutReceiverInput[] | PaymentUncheckedCreateWithoutReceiverInput | PaymentUncheckedCreateWithoutReceiverInput[] No
connectOrCreate PaymentCreateOrConnectWithoutReceiverInput | PaymentCreateOrConnectWithoutReceiverInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutReceiverInput | PaymentUpsertWithWhereUniqueWithoutReceiverInput[] No
createMany PaymentCreateManyReceiverInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutReceiverInput | PaymentUpdateWithWhereUniqueWithoutReceiverInput[] No
updateMany PaymentUpdateManyWithWhereWithoutReceiverInput | PaymentUpdateManyWithWhereWithoutReceiverInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

SessionUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

PrincipalUncheckedUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create PrincipalCreateWithoutCreatorInput | PrincipalCreateWithoutCreatorInput[] | PrincipalUncheckedCreateWithoutCreatorInput | PrincipalUncheckedCreateWithoutCreatorInput[] No
connectOrCreate PrincipalCreateOrConnectWithoutCreatorInput | PrincipalCreateOrConnectWithoutCreatorInput[] No
upsert PrincipalUpsertWithWhereUniqueWithoutCreatorInput | PrincipalUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany PrincipalCreateManyCreatorInputEnvelope No
set PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
disconnect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
delete PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
connect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
update PrincipalUpdateWithWhereUniqueWithoutCreatorInput | PrincipalUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany PrincipalUpdateManyWithWhereWithoutCreatorInput | PrincipalUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany PrincipalScalarWhereInput | PrincipalScalarWhereInput[] No

PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create PrincipalCreateWithoutUpdaterInput | PrincipalCreateWithoutUpdaterInput[] | PrincipalUncheckedCreateWithoutUpdaterInput | PrincipalUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate PrincipalCreateOrConnectWithoutUpdaterInput | PrincipalCreateOrConnectWithoutUpdaterInput[] No
upsert PrincipalUpsertWithWhereUniqueWithoutUpdaterInput | PrincipalUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany PrincipalCreateManyUpdaterInputEnvelope No
set PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
disconnect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
delete PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
connect PrincipalWhereUniqueInput | PrincipalWhereUniqueInput[] No
update PrincipalUpdateWithWhereUniqueWithoutUpdaterInput | PrincipalUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany PrincipalUpdateManyWithWhereWithoutUpdaterInput | PrincipalUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany PrincipalScalarWhereInput | PrincipalScalarWhereInput[] No

PaymentUncheckedUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create PaymentCreateWithoutCreatorInput | PaymentCreateWithoutCreatorInput[] | PaymentUncheckedCreateWithoutCreatorInput | PaymentUncheckedCreateWithoutCreatorInput[] No
connectOrCreate PaymentCreateOrConnectWithoutCreatorInput | PaymentCreateOrConnectWithoutCreatorInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutCreatorInput | PaymentUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany PaymentCreateManyCreatorInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutCreatorInput | PaymentUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany PaymentUpdateManyWithWhereWithoutCreatorInput | PaymentUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

PaymentUncheckedUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create PaymentCreateWithoutUpdaterInput | PaymentCreateWithoutUpdaterInput[] | PaymentUncheckedCreateWithoutUpdaterInput | PaymentUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate PaymentCreateOrConnectWithoutUpdaterInput | PaymentCreateOrConnectWithoutUpdaterInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutUpdaterInput | PaymentUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany PaymentCreateManyUpdaterInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutUpdaterInput | PaymentUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany PaymentUpdateManyWithWhereWithoutUpdaterInput | PaymentUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

AppointmentUncheckedUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create AppointmentCreateWithoutCreatorInput | AppointmentCreateWithoutCreatorInput[] | AppointmentUncheckedCreateWithoutCreatorInput | AppointmentUncheckedCreateWithoutCreatorInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutCreatorInput | AppointmentCreateOrConnectWithoutCreatorInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutCreatorInput | AppointmentUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany AppointmentCreateManyCreatorInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutCreatorInput | AppointmentUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutCreatorInput | AppointmentUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create AppointmentCreateWithoutUpdaterInput | AppointmentCreateWithoutUpdaterInput[] | AppointmentUncheckedCreateWithoutUpdaterInput | AppointmentUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutUpdaterInput | AppointmentCreateOrConnectWithoutUpdaterInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutUpdaterInput | AppointmentUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany AppointmentCreateManyUpdaterInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutUpdaterInput | AppointmentUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutUpdaterInput | AppointmentUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EquipmentUncheckedUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create EquipmentCreateWithoutCreatorInput | EquipmentCreateWithoutCreatorInput[] | EquipmentUncheckedCreateWithoutCreatorInput | EquipmentUncheckedCreateWithoutCreatorInput[] No
connectOrCreate EquipmentCreateOrConnectWithoutCreatorInput | EquipmentCreateOrConnectWithoutCreatorInput[] No
upsert EquipmentUpsertWithWhereUniqueWithoutCreatorInput | EquipmentUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany EquipmentCreateManyCreatorInputEnvelope No
set EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
disconnect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
delete EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
connect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
update EquipmentUpdateWithWhereUniqueWithoutCreatorInput | EquipmentUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany EquipmentUpdateManyWithWhereWithoutCreatorInput | EquipmentUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany EquipmentScalarWhereInput | EquipmentScalarWhereInput[] No

EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create EquipmentCreateWithoutUpdaterInput | EquipmentCreateWithoutUpdaterInput[] | EquipmentUncheckedCreateWithoutUpdaterInput | EquipmentUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate EquipmentCreateOrConnectWithoutUpdaterInput | EquipmentCreateOrConnectWithoutUpdaterInput[] No
upsert EquipmentUpsertWithWhereUniqueWithoutUpdaterInput | EquipmentUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany EquipmentCreateManyUpdaterInputEnvelope No
set EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
disconnect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
delete EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
connect EquipmentWhereUniqueInput | EquipmentWhereUniqueInput[] No
update EquipmentUpdateWithWhereUniqueWithoutUpdaterInput | EquipmentUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany EquipmentUpdateManyWithWhereWithoutUpdaterInput | EquipmentUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany EquipmentScalarWhereInput | EquipmentScalarWhereInput[] No

PatientUncheckedUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create PatientCreateWithoutCreatorInput | PatientCreateWithoutCreatorInput[] | PatientUncheckedCreateWithoutCreatorInput | PatientUncheckedCreateWithoutCreatorInput[] No
connectOrCreate PatientCreateOrConnectWithoutCreatorInput | PatientCreateOrConnectWithoutCreatorInput[] No
upsert PatientUpsertWithWhereUniqueWithoutCreatorInput | PatientUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany PatientCreateManyCreatorInputEnvelope No
set PatientWhereUniqueInput | PatientWhereUniqueInput[] No
disconnect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
delete PatientWhereUniqueInput | PatientWhereUniqueInput[] No
connect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
update PatientUpdateWithWhereUniqueWithoutCreatorInput | PatientUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany PatientUpdateManyWithWhereWithoutCreatorInput | PatientUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany PatientScalarWhereInput | PatientScalarWhereInput[] No

PatientUncheckedUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create PatientCreateWithoutUpdaterInput | PatientCreateWithoutUpdaterInput[] | PatientUncheckedCreateWithoutUpdaterInput | PatientUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate PatientCreateOrConnectWithoutUpdaterInput | PatientCreateOrConnectWithoutUpdaterInput[] No
upsert PatientUpsertWithWhereUniqueWithoutUpdaterInput | PatientUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany PatientCreateManyUpdaterInputEnvelope No
set PatientWhereUniqueInput | PatientWhereUniqueInput[] No
disconnect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
delete PatientWhereUniqueInput | PatientWhereUniqueInput[] No
connect PatientWhereUniqueInput | PatientWhereUniqueInput[] No
update PatientUpdateWithWhereUniqueWithoutUpdaterInput | PatientUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany PatientUpdateManyWithWhereWithoutUpdaterInput | PatientUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany PatientScalarWhereInput | PatientScalarWhereInput[] No

ServiceUncheckedUpdateManyWithoutCreatorNestedInput

Name Type Nullable
create ServiceCreateWithoutCreatorInput | ServiceCreateWithoutCreatorInput[] | ServiceUncheckedCreateWithoutCreatorInput | ServiceUncheckedCreateWithoutCreatorInput[] No
connectOrCreate ServiceCreateOrConnectWithoutCreatorInput | ServiceCreateOrConnectWithoutCreatorInput[] No
upsert ServiceUpsertWithWhereUniqueWithoutCreatorInput | ServiceUpsertWithWhereUniqueWithoutCreatorInput[] No
createMany ServiceCreateManyCreatorInputEnvelope No
set ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
disconnect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
delete ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
connect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
update ServiceUpdateWithWhereUniqueWithoutCreatorInput | ServiceUpdateWithWhereUniqueWithoutCreatorInput[] No
updateMany ServiceUpdateManyWithWhereWithoutCreatorInput | ServiceUpdateManyWithWhereWithoutCreatorInput[] No
deleteMany ServiceScalarWhereInput | ServiceScalarWhereInput[] No

ServiceUncheckedUpdateManyWithoutUpdaterNestedInput

Name Type Nullable
create ServiceCreateWithoutUpdaterInput | ServiceCreateWithoutUpdaterInput[] | ServiceUncheckedCreateWithoutUpdaterInput | ServiceUncheckedCreateWithoutUpdaterInput[] No
connectOrCreate ServiceCreateOrConnectWithoutUpdaterInput | ServiceCreateOrConnectWithoutUpdaterInput[] No
upsert ServiceUpsertWithWhereUniqueWithoutUpdaterInput | ServiceUpsertWithWhereUniqueWithoutUpdaterInput[] No
createMany ServiceCreateManyUpdaterInputEnvelope No
set ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
disconnect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
delete ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
connect ServiceWhereUniqueInput | ServiceWhereUniqueInput[] No
update ServiceUpdateWithWhereUniqueWithoutUpdaterInput | ServiceUpdateWithWhereUniqueWithoutUpdaterInput[] No
updateMany ServiceUpdateManyWithWhereWithoutUpdaterInput | ServiceUpdateManyWithWhereWithoutUpdaterInput[] No
deleteMany ServiceScalarWhereInput | ServiceScalarWhereInput[] No

AccountUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

AuthenticatorUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create AuthenticatorCreateWithoutUserInput | AuthenticatorCreateWithoutUserInput[] | AuthenticatorUncheckedCreateWithoutUserInput | AuthenticatorUncheckedCreateWithoutUserInput[] No
connectOrCreate AuthenticatorCreateOrConnectWithoutUserInput | AuthenticatorCreateOrConnectWithoutUserInput[] No
upsert AuthenticatorUpsertWithWhereUniqueWithoutUserInput | AuthenticatorUpsertWithWhereUniqueWithoutUserInput[] No
createMany AuthenticatorCreateManyUserInputEnvelope No
set AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
disconnect AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
delete AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
connect AuthenticatorWhereUniqueInput | AuthenticatorWhereUniqueInput[] No
update AuthenticatorUpdateWithWhereUniqueWithoutUserInput | AuthenticatorUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AuthenticatorUpdateManyWithWhereWithoutUserInput | AuthenticatorUpdateManyWithWhereWithoutUserInput[] No
deleteMany AuthenticatorScalarWhereInput | AuthenticatorScalarWhereInput[] No

PaymentUncheckedUpdateManyWithoutReceiverNestedInput

Name Type Nullable
create PaymentCreateWithoutReceiverInput | PaymentCreateWithoutReceiverInput[] | PaymentUncheckedCreateWithoutReceiverInput | PaymentUncheckedCreateWithoutReceiverInput[] No
connectOrCreate PaymentCreateOrConnectWithoutReceiverInput | PaymentCreateOrConnectWithoutReceiverInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutReceiverInput | PaymentUpsertWithWhereUniqueWithoutReceiverInput[] No
createMany PaymentCreateManyReceiverInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutReceiverInput | PaymentUpdateWithWhereUniqueWithoutReceiverInput[] No
updateMany PaymentUpdateManyWithWhereWithoutReceiverInput | PaymentUpdateManyWithWhereWithoutReceiverInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

SessionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

PrincipalCreateNestedOneWithoutAccountsInput

Name Type Nullable
create PrincipalCreateWithoutAccountsInput | PrincipalUncheckedCreateWithoutAccountsInput No
connectOrCreate PrincipalCreateOrConnectWithoutAccountsInput No
connect PrincipalWhereUniqueInput No


PrincipalCreateNestedOneWithoutSessionsInput

Name Type Nullable
create PrincipalCreateWithoutSessionsInput | PrincipalUncheckedCreateWithoutSessionsInput No
connectOrCreate PrincipalCreateOrConnectWithoutSessionsInput No
connect PrincipalWhereUniqueInput No


PrincipalCreateNestedOneWithoutAuthenticatorInput

Name Type Nullable
create PrincipalCreateWithoutAuthenticatorInput | PrincipalUncheckedCreateWithoutAuthenticatorInput No
connectOrCreate PrincipalCreateOrConnectWithoutAuthenticatorInput No
connect PrincipalWhereUniqueInput No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No


PatientCreateNestedOneWithoutPaymentListInput

Name Type Nullable
create PatientCreateWithoutPaymentListInput | PatientUncheckedCreateWithoutPaymentListInput No
connectOrCreate PatientCreateOrConnectWithoutPaymentListInput No
connect PatientWhereUniqueInput No

PrincipalCreateNestedOneWithoutReceivedPaymentListInput

Name Type Nullable
create PrincipalCreateWithoutReceivedPaymentListInput | PrincipalUncheckedCreateWithoutReceivedPaymentListInput No
connectOrCreate PrincipalCreateOrConnectWithoutReceivedPaymentListInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutCreatedPaymentsInput

Name Type Nullable
create PrincipalCreateWithoutCreatedPaymentsInput | PrincipalUncheckedCreateWithoutCreatedPaymentsInput No
connectOrCreate PrincipalCreateOrConnectWithoutCreatedPaymentsInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutUpdatedPaymentsInput

Name Type Nullable
create PrincipalCreateWithoutUpdatedPaymentsInput | PrincipalUncheckedCreateWithoutUpdatedPaymentsInput No
connectOrCreate PrincipalCreateOrConnectWithoutUpdatedPaymentsInput No
connect PrincipalWhereUniqueInput No

EnumPaymentMethodFieldUpdateOperationsInput

Name Type Nullable
set PaymentMethod No






LocationCreateNestedOneWithoutAppointmentListInput

Name Type Nullable
create LocationCreateWithoutAppointmentListInput | LocationUncheckedCreateWithoutAppointmentListInput No
connectOrCreate LocationCreateOrConnectWithoutAppointmentListInput No
connect LocationWhereUniqueInput No

PatientCreateNestedOneWithoutAppointmentListInput

Name Type Nullable
create PatientCreateWithoutAppointmentListInput | PatientUncheckedCreateWithoutAppointmentListInput No
connectOrCreate PatientCreateOrConnectWithoutAppointmentListInput No
connect PatientWhereUniqueInput No

ProviderCreateNestedOneWithoutAppointmentListInput

Name Type Nullable
create ProviderCreateWithoutAppointmentListInput | ProviderUncheckedCreateWithoutAppointmentListInput No
connectOrCreate ProviderCreateOrConnectWithoutAppointmentListInput No
connect ProviderWhereUniqueInput No

PrincipalCreateNestedOneWithoutCreatedAppointmentsInput

Name Type Nullable
create PrincipalCreateWithoutCreatedAppointmentsInput | PrincipalUncheckedCreateWithoutCreatedAppointmentsInput No
connectOrCreate PrincipalCreateOrConnectWithoutCreatedAppointmentsInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput

Name Type Nullable
create PrincipalCreateWithoutUpdatedAppointmentsInput | PrincipalUncheckedCreateWithoutUpdatedAppointmentsInput No
connectOrCreate PrincipalCreateOrConnectWithoutUpdatedAppointmentsInput No
connect PrincipalWhereUniqueInput No

NullableEnumTimeOfDayFieldUpdateOperationsInput

Name Type Nullable
set TimeOfDay | Null Yes

NullableBoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean | Null Yes









AppointmentUpdateManyWithoutAppointmentTypeNestedInput

Name Type Nullable
create AppointmentCreateWithoutAppointmentTypeInput | AppointmentCreateWithoutAppointmentTypeInput[] | AppointmentUncheckedCreateWithoutAppointmentTypeInput | AppointmentUncheckedCreateWithoutAppointmentTypeInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutAppointmentTypeInput | AppointmentCreateOrConnectWithoutAppointmentTypeInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutAppointmentTypeInput | AppointmentUpsertWithWhereUniqueWithoutAppointmentTypeInput[] No
createMany AppointmentCreateManyAppointmentTypeInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutAppointmentTypeInput | AppointmentUpdateWithWhereUniqueWithoutAppointmentTypeInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutAppointmentTypeInput | AppointmentUpdateManyWithWhereWithoutAppointmentTypeInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

AppointmentUncheckedUpdateManyWithoutAppointmentTypeNestedInput

Name Type Nullable
create AppointmentCreateWithoutAppointmentTypeInput | AppointmentCreateWithoutAppointmentTypeInput[] | AppointmentUncheckedCreateWithoutAppointmentTypeInput | AppointmentUncheckedCreateWithoutAppointmentTypeInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutAppointmentTypeInput | AppointmentCreateOrConnectWithoutAppointmentTypeInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutAppointmentTypeInput | AppointmentUpsertWithWhereUniqueWithoutAppointmentTypeInput[] No
createMany AppointmentCreateManyAppointmentTypeInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutAppointmentTypeInput | AppointmentUpdateWithWhereUniqueWithoutAppointmentTypeInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutAppointmentTypeInput | AppointmentUpdateManyWithWhereWithoutAppointmentTypeInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No





FloatFieldUpdateOperationsInput

Name Type Nullable
set Float No
increment Float No
decrement Float No
multiply Float No
divide Float No

AppointmentUpdateManyWithoutLocationNestedInput

Name Type Nullable
create AppointmentCreateWithoutLocationInput | AppointmentCreateWithoutLocationInput[] | AppointmentUncheckedCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutLocationInput | AppointmentCreateOrConnectWithoutLocationInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutLocationInput | AppointmentUpsertWithWhereUniqueWithoutLocationInput[] No
createMany AppointmentCreateManyLocationInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutLocationInput | AppointmentUpdateWithWhereUniqueWithoutLocationInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutLocationInput | AppointmentUpdateManyWithWhereWithoutLocationInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EncounterUpdateManyWithoutLocationNestedInput

Name Type Nullable
create EncounterCreateWithoutLocationInput | EncounterCreateWithoutLocationInput[] | EncounterUncheckedCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput[] No
connectOrCreate EncounterCreateOrConnectWithoutLocationInput | EncounterCreateOrConnectWithoutLocationInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutLocationInput | EncounterUpsertWithWhereUniqueWithoutLocationInput[] No
createMany EncounterCreateManyLocationInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutLocationInput | EncounterUpdateWithWhereUniqueWithoutLocationInput[] No
updateMany EncounterUpdateManyWithWhereWithoutLocationInput | EncounterUpdateManyWithWhereWithoutLocationInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

AppointmentUncheckedUpdateManyWithoutLocationNestedInput

Name Type Nullable
create AppointmentCreateWithoutLocationInput | AppointmentCreateWithoutLocationInput[] | AppointmentUncheckedCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutLocationInput | AppointmentCreateOrConnectWithoutLocationInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutLocationInput | AppointmentUpsertWithWhereUniqueWithoutLocationInput[] No
createMany AppointmentCreateManyLocationInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutLocationInput | AppointmentUpdateWithWhereUniqueWithoutLocationInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutLocationInput | AppointmentUpdateManyWithWhereWithoutLocationInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EncounterUncheckedUpdateManyWithoutLocationNestedInput

Name Type Nullable
create EncounterCreateWithoutLocationInput | EncounterCreateWithoutLocationInput[] | EncounterUncheckedCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput[] No
connectOrCreate EncounterCreateOrConnectWithoutLocationInput | EncounterCreateOrConnectWithoutLocationInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutLocationInput | EncounterUpsertWithWhereUniqueWithoutLocationInput[] No
createMany EncounterCreateManyLocationInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutLocationInput | EncounterUpdateWithWhereUniqueWithoutLocationInput[] No
updateMany EncounterUpdateManyWithWhereWithoutLocationInput | EncounterUpdateManyWithWhereWithoutLocationInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No


PrincipalCreateNestedOneWithoutCreatedPatientsInput

Name Type Nullable
create PrincipalCreateWithoutCreatedPatientsInput | PrincipalUncheckedCreateWithoutCreatedPatientsInput No
connectOrCreate PrincipalCreateOrConnectWithoutCreatedPatientsInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutUpdatedPatientsInput

Name Type Nullable
create PrincipalCreateWithoutUpdatedPatientsInput | PrincipalUncheckedCreateWithoutUpdatedPatientsInput No
connectOrCreate PrincipalCreateOrConnectWithoutUpdatedPatientsInput No
connect PrincipalWhereUniqueInput No






EnumGenderFieldUpdateOperationsInput

Name Type Nullable
set Gender No

PaymentUpdateManyWithoutPayerNestedInput

Name Type Nullable
create PaymentCreateWithoutPayerInput | PaymentCreateWithoutPayerInput[] | PaymentUncheckedCreateWithoutPayerInput | PaymentUncheckedCreateWithoutPayerInput[] No
connectOrCreate PaymentCreateOrConnectWithoutPayerInput | PaymentCreateOrConnectWithoutPayerInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutPayerInput | PaymentUpsertWithWhereUniqueWithoutPayerInput[] No
createMany PaymentCreateManyPayerInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutPayerInput | PaymentUpdateWithWhereUniqueWithoutPayerInput[] No
updateMany PaymentUpdateManyWithWhereWithoutPayerInput | PaymentUpdateManyWithWhereWithoutPayerInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No



AppointmentUpdateManyWithoutPatientNestedInput

Name Type Nullable
create AppointmentCreateWithoutPatientInput | AppointmentCreateWithoutPatientInput[] | AppointmentUncheckedCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutPatientInput | AppointmentCreateOrConnectWithoutPatientInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutPatientInput | AppointmentUpsertWithWhereUniqueWithoutPatientInput[] No
createMany AppointmentCreateManyPatientInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutPatientInput | AppointmentUpdateWithWhereUniqueWithoutPatientInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutPatientInput | AppointmentUpdateManyWithWhereWithoutPatientInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EncounterUpdateManyWithoutPatientNestedInput

Name Type Nullable
create EncounterCreateWithoutPatientInput | EncounterCreateWithoutPatientInput[] | EncounterUncheckedCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput[] No
connectOrCreate EncounterCreateOrConnectWithoutPatientInput | EncounterCreateOrConnectWithoutPatientInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutPatientInput | EncounterUpsertWithWhereUniqueWithoutPatientInput[] No
createMany EncounterCreateManyPatientInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutPatientInput | EncounterUpdateWithWhereUniqueWithoutPatientInput[] No
updateMany EncounterUpdateManyWithWhereWithoutPatientInput | EncounterUpdateManyWithWhereWithoutPatientInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

PaymentUncheckedUpdateManyWithoutPayerNestedInput

Name Type Nullable
create PaymentCreateWithoutPayerInput | PaymentCreateWithoutPayerInput[] | PaymentUncheckedCreateWithoutPayerInput | PaymentUncheckedCreateWithoutPayerInput[] No
connectOrCreate PaymentCreateOrConnectWithoutPayerInput | PaymentCreateOrConnectWithoutPayerInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutPayerInput | PaymentUpsertWithWhereUniqueWithoutPayerInput[] No
createMany PaymentCreateManyPayerInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutPayerInput | PaymentUpdateWithWhereUniqueWithoutPayerInput[] No
updateMany PaymentUpdateManyWithWhereWithoutPayerInput | PaymentUpdateManyWithWhereWithoutPayerInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

AppointmentUncheckedUpdateManyWithoutPatientNestedInput

Name Type Nullable
create AppointmentCreateWithoutPatientInput | AppointmentCreateWithoutPatientInput[] | AppointmentUncheckedCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutPatientInput | AppointmentCreateOrConnectWithoutPatientInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutPatientInput | AppointmentUpsertWithWhereUniqueWithoutPatientInput[] No
createMany AppointmentCreateManyPatientInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutPatientInput | AppointmentUpdateWithWhereUniqueWithoutPatientInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutPatientInput | AppointmentUpdateManyWithWhereWithoutPatientInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EncounterUncheckedUpdateManyWithoutPatientNestedInput

Name Type Nullable
create EncounterCreateWithoutPatientInput | EncounterCreateWithoutPatientInput[] | EncounterUncheckedCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput[] No
connectOrCreate EncounterCreateOrConnectWithoutPatientInput | EncounterCreateOrConnectWithoutPatientInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutPatientInput | EncounterUpsertWithWhereUniqueWithoutPatientInput[] No
createMany EncounterCreateManyPatientInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutPatientInput | EncounterUpdateWithWhereUniqueWithoutPatientInput[] No
updateMany EncounterUpdateManyWithWhereWithoutPatientInput | EncounterUpdateManyWithWhereWithoutPatientInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

PrincipalCreateNestedOneWithoutCreatedEquipmentsInput

Name Type Nullable
create PrincipalCreateWithoutCreatedEquipmentsInput | PrincipalUncheckedCreateWithoutCreatedEquipmentsInput No
connectOrCreate PrincipalCreateOrConnectWithoutCreatedEquipmentsInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutUpdatedEquipmentsInput

Name Type Nullable
create PrincipalCreateWithoutUpdatedEquipmentsInput | PrincipalUncheckedCreateWithoutUpdatedEquipmentsInput No
connectOrCreate PrincipalCreateOrConnectWithoutUpdatedEquipmentsInput No
connect PrincipalWhereUniqueInput No



PrincipalCreateNestedOneWithoutCreatedServicesInput

Name Type Nullable
create PrincipalCreateWithoutCreatedServicesInput | PrincipalUncheckedCreateWithoutCreatedServicesInput No
connectOrCreate PrincipalCreateOrConnectWithoutCreatedServicesInput No
connect PrincipalWhereUniqueInput No

PrincipalCreateNestedOneWithoutUpdatedServicesInput

Name Type Nullable
create PrincipalCreateWithoutUpdatedServicesInput | PrincipalUncheckedCreateWithoutUpdatedServicesInput No
connectOrCreate PrincipalCreateOrConnectWithoutUpdatedServicesInput No
connect PrincipalWhereUniqueInput No







AppointmentUpdateManyWithoutProviderNestedInput

Name Type Nullable
create AppointmentCreateWithoutProviderInput | AppointmentCreateWithoutProviderInput[] | AppointmentUncheckedCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutProviderInput | AppointmentCreateOrConnectWithoutProviderInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutProviderInput | AppointmentUpsertWithWhereUniqueWithoutProviderInput[] No
createMany AppointmentCreateManyProviderInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutProviderInput | AppointmentUpdateWithWhereUniqueWithoutProviderInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutProviderInput | AppointmentUpdateManyWithWhereWithoutProviderInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EncounterUpdateManyWithoutProviderNestedInput

Name Type Nullable
create EncounterCreateWithoutProviderInput | EncounterCreateWithoutProviderInput[] | EncounterUncheckedCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput[] No
connectOrCreate EncounterCreateOrConnectWithoutProviderInput | EncounterCreateOrConnectWithoutProviderInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutProviderInput | EncounterUpsertWithWhereUniqueWithoutProviderInput[] No
createMany EncounterCreateManyProviderInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutProviderInput | EncounterUpdateWithWhereUniqueWithoutProviderInput[] No
updateMany EncounterUpdateManyWithWhereWithoutProviderInput | EncounterUpdateManyWithWhereWithoutProviderInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

AppointmentUncheckedUpdateManyWithoutProviderNestedInput

Name Type Nullable
create AppointmentCreateWithoutProviderInput | AppointmentCreateWithoutProviderInput[] | AppointmentUncheckedCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput[] No
connectOrCreate AppointmentCreateOrConnectWithoutProviderInput | AppointmentCreateOrConnectWithoutProviderInput[] No
upsert AppointmentUpsertWithWhereUniqueWithoutProviderInput | AppointmentUpsertWithWhereUniqueWithoutProviderInput[] No
createMany AppointmentCreateManyProviderInputEnvelope No
set AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
disconnect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
delete AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
connect AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] No
update AppointmentUpdateWithWhereUniqueWithoutProviderInput | AppointmentUpdateWithWhereUniqueWithoutProviderInput[] No
updateMany AppointmentUpdateManyWithWhereWithoutProviderInput | AppointmentUpdateManyWithWhereWithoutProviderInput[] No
deleteMany AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No

EncounterUncheckedUpdateManyWithoutProviderNestedInput

Name Type Nullable
create EncounterCreateWithoutProviderInput | EncounterCreateWithoutProviderInput[] | EncounterUncheckedCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput[] No
connectOrCreate EncounterCreateOrConnectWithoutProviderInput | EncounterCreateOrConnectWithoutProviderInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutProviderInput | EncounterUpsertWithWhereUniqueWithoutProviderInput[] No
createMany EncounterCreateManyProviderInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutProviderInput | EncounterUpdateWithWhereUniqueWithoutProviderInput[] No
updateMany EncounterUpdateManyWithWhereWithoutProviderInput | EncounterUpdateManyWithWhereWithoutProviderInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No


FieldCreateNestedOneWithoutFormListInput

Name Type Nullable
create FieldCreateWithoutFormListInput | FieldUncheckedCreateWithoutFormListInput No
connectOrCreate FieldCreateOrConnectWithoutFormListInput No
connect FieldWhereUniqueInput No








EncounterUpdateManyWithoutFormNestedInput

Name Type Nullable
create EncounterCreateWithoutFormInput | EncounterCreateWithoutFormInput[] | EncounterUncheckedCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput[] No
connectOrCreate EncounterCreateOrConnectWithoutFormInput | EncounterCreateOrConnectWithoutFormInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutFormInput | EncounterUpsertWithWhereUniqueWithoutFormInput[] No
createMany EncounterCreateManyFormInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutFormInput | EncounterUpdateWithWhereUniqueWithoutFormInput[] No
updateMany EncounterUpdateManyWithWhereWithoutFormInput | EncounterUpdateManyWithWhereWithoutFormInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No


FormEncounterUpdateManyWithoutFormNestedInput

Name Type Nullable
create FormEncounterCreateWithoutFormInput | FormEncounterCreateWithoutFormInput[] | FormEncounterUncheckedCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput[] No
connectOrCreate FormEncounterCreateOrConnectWithoutFormInput | FormEncounterCreateOrConnectWithoutFormInput[] No
upsert FormEncounterUpsertWithWhereUniqueWithoutFormInput | FormEncounterUpsertWithWhereUniqueWithoutFormInput[] No
createMany FormEncounterCreateManyFormInputEnvelope No
set FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
disconnect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
delete FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
connect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
update FormEncounterUpdateWithWhereUniqueWithoutFormInput | FormEncounterUpdateWithWhereUniqueWithoutFormInput[] No
updateMany FormEncounterUpdateManyWithWhereWithoutFormInput | FormEncounterUpdateManyWithWhereWithoutFormInput[] No
deleteMany FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] No

FormResourceUpdateManyWithoutFormNestedInput

Name Type Nullable
create FormResourceCreateWithoutFormInput | FormResourceCreateWithoutFormInput[] | FormResourceUncheckedCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput[] No
connectOrCreate FormResourceCreateOrConnectWithoutFormInput | FormResourceCreateOrConnectWithoutFormInput[] No
upsert FormResourceUpsertWithWhereUniqueWithoutFormInput | FormResourceUpsertWithWhereUniqueWithoutFormInput[] No
createMany FormResourceCreateManyFormInputEnvelope No
set FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
disconnect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
delete FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
connect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
update FormResourceUpdateWithWhereUniqueWithoutFormInput | FormResourceUpdateWithWhereUniqueWithoutFormInput[] No
updateMany FormResourceUpdateManyWithWhereWithoutFormInput | FormResourceUpdateManyWithWhereWithoutFormInput[] No
deleteMany FormResourceScalarWhereInput | FormResourceScalarWhereInput[] No

FormSubmissionUpdateManyWithoutFormNestedInput

Name Type Nullable
create FormSubmissionCreateWithoutFormInput | FormSubmissionCreateWithoutFormInput[] | FormSubmissionUncheckedCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput[] No
connectOrCreate FormSubmissionCreateOrConnectWithoutFormInput | FormSubmissionCreateOrConnectWithoutFormInput[] No
upsert FormSubmissionUpsertWithWhereUniqueWithoutFormInput | FormSubmissionUpsertWithWhereUniqueWithoutFormInput[] No
createMany FormSubmissionCreateManyFormInputEnvelope No
set FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
disconnect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
delete FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
connect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
update FormSubmissionUpdateWithWhereUniqueWithoutFormInput | FormSubmissionUpdateWithWhereUniqueWithoutFormInput[] No
updateMany FormSubmissionUpdateManyWithWhereWithoutFormInput | FormSubmissionUpdateManyWithWhereWithoutFormInput[] No
deleteMany FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] No

EncounterUncheckedUpdateManyWithoutFormNestedInput

Name Type Nullable
create EncounterCreateWithoutFormInput | EncounterCreateWithoutFormInput[] | EncounterUncheckedCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput[] No
connectOrCreate EncounterCreateOrConnectWithoutFormInput | EncounterCreateOrConnectWithoutFormInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutFormInput | EncounterUpsertWithWhereUniqueWithoutFormInput[] No
createMany EncounterCreateManyFormInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutFormInput | EncounterUpdateWithWhereUniqueWithoutFormInput[] No
updateMany EncounterUpdateManyWithWhereWithoutFormInput | EncounterUpdateManyWithWhereWithoutFormInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

FormEncounterUncheckedUpdateManyWithoutFormNestedInput

Name Type Nullable
create FormEncounterCreateWithoutFormInput | FormEncounterCreateWithoutFormInput[] | FormEncounterUncheckedCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput[] No
connectOrCreate FormEncounterCreateOrConnectWithoutFormInput | FormEncounterCreateOrConnectWithoutFormInput[] No
upsert FormEncounterUpsertWithWhereUniqueWithoutFormInput | FormEncounterUpsertWithWhereUniqueWithoutFormInput[] No
createMany FormEncounterCreateManyFormInputEnvelope No
set FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
disconnect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
delete FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
connect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
update FormEncounterUpdateWithWhereUniqueWithoutFormInput | FormEncounterUpdateWithWhereUniqueWithoutFormInput[] No
updateMany FormEncounterUpdateManyWithWhereWithoutFormInput | FormEncounterUpdateManyWithWhereWithoutFormInput[] No
deleteMany FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] No

FormResourceUncheckedUpdateManyWithoutFormNestedInput

Name Type Nullable
create FormResourceCreateWithoutFormInput | FormResourceCreateWithoutFormInput[] | FormResourceUncheckedCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput[] No
connectOrCreate FormResourceCreateOrConnectWithoutFormInput | FormResourceCreateOrConnectWithoutFormInput[] No
upsert FormResourceUpsertWithWhereUniqueWithoutFormInput | FormResourceUpsertWithWhereUniqueWithoutFormInput[] No
createMany FormResourceCreateManyFormInputEnvelope No
set FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
disconnect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
delete FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
connect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
update FormResourceUpdateWithWhereUniqueWithoutFormInput | FormResourceUpdateWithWhereUniqueWithoutFormInput[] No
updateMany FormResourceUpdateManyWithWhereWithoutFormInput | FormResourceUpdateManyWithWhereWithoutFormInput[] No
deleteMany FormResourceScalarWhereInput | FormResourceScalarWhereInput[] No

FormSubmissionUncheckedUpdateManyWithoutFormNestedInput

Name Type Nullable
create FormSubmissionCreateWithoutFormInput | FormSubmissionCreateWithoutFormInput[] | FormSubmissionUncheckedCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput[] No
connectOrCreate FormSubmissionCreateOrConnectWithoutFormInput | FormSubmissionCreateOrConnectWithoutFormInput[] No
upsert FormSubmissionUpsertWithWhereUniqueWithoutFormInput | FormSubmissionUpsertWithWhereUniqueWithoutFormInput[] No
createMany FormSubmissionCreateManyFormInputEnvelope No
set FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
disconnect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
delete FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
connect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
update FormSubmissionUpdateWithWhereUniqueWithoutFormInput | FormSubmissionUpdateWithWhereUniqueWithoutFormInput[] No
updateMany FormSubmissionUpdateManyWithWhereWithoutFormInput | FormSubmissionUpdateManyWithWhereWithoutFormInput[] No
deleteMany FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] No

EncounterCreateNestedOneWithoutFormEncounterListInput

Name Type Nullable
create EncounterCreateWithoutFormEncounterListInput | EncounterUncheckedCreateWithoutFormEncounterListInput No
connectOrCreate EncounterCreateOrConnectWithoutFormEncounterListInput No
connect EncounterWhereUniqueInput No

FormCreateNestedOneWithoutFormEncounterListInput

Name Type Nullable
create FormCreateWithoutFormEncounterListInput | FormUncheckedCreateWithoutFormEncounterListInput No
connectOrCreate FormCreateOrConnectWithoutFormEncounterListInput No
connect FormWhereUniqueInput No



FormCreateNestedOneWithoutFormResourceListInput

Name Type Nullable
create FormCreateWithoutFormResourceListInput | FormUncheckedCreateWithoutFormResourceListInput No
connectOrCreate FormCreateOrConnectWithoutFormResourceListInput No
connect FormWhereUniqueInput No

ResourceCreateNestedOneWithoutFormResourceListInput

Name Type Nullable
create ResourceCreateWithoutFormResourceListInput | ResourceUncheckedCreateWithoutFormResourceListInput No
connectOrCreate ResourceCreateOrConnectWithoutFormResourceListInput No
connect ResourceWhereUniqueInput No




EncounterCreateNestedOneWithoutFormSubmissionListInput

Name Type Nullable
create EncounterCreateWithoutFormSubmissionListInput | EncounterUncheckedCreateWithoutFormSubmissionListInput No
connectOrCreate EncounterCreateOrConnectWithoutFormSubmissionListInput No
connect EncounterWhereUniqueInput No

FormCreateNestedOneWithoutFormSubmissionListInput

Name Type Nullable
create FormCreateWithoutFormSubmissionListInput | FormUncheckedCreateWithoutFormSubmissionListInput No
connectOrCreate FormCreateOrConnectWithoutFormSubmissionListInput No
connect FormWhereUniqueInput No


FieldAnswerUpdateManyWithoutFormSubmissionNestedInput

Name Type Nullable
create FieldAnswerCreateWithoutFormSubmissionInput | FieldAnswerCreateWithoutFormSubmissionInput[] | FieldAnswerUncheckedCreateWithoutFormSubmissionInput | FieldAnswerUncheckedCreateWithoutFormSubmissionInput[] No
connectOrCreate FieldAnswerCreateOrConnectWithoutFormSubmissionInput | FieldAnswerCreateOrConnectWithoutFormSubmissionInput[] No
upsert FieldAnswerUpsertWithWhereUniqueWithoutFormSubmissionInput | FieldAnswerUpsertWithWhereUniqueWithoutFormSubmissionInput[] No
createMany FieldAnswerCreateManyFormSubmissionInputEnvelope No
set FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
disconnect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
delete FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
connect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
update FieldAnswerUpdateWithWhereUniqueWithoutFormSubmissionInput | FieldAnswerUpdateWithWhereUniqueWithoutFormSubmissionInput[] No
updateMany FieldAnswerUpdateManyWithWhereWithoutFormSubmissionInput | FieldAnswerUpdateManyWithWhereWithoutFormSubmissionInput[] No
deleteMany FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] No



FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput

Name Type Nullable
create FieldAnswerCreateWithoutFormSubmissionInput | FieldAnswerCreateWithoutFormSubmissionInput[] | FieldAnswerUncheckedCreateWithoutFormSubmissionInput | FieldAnswerUncheckedCreateWithoutFormSubmissionInput[] No
connectOrCreate FieldAnswerCreateOrConnectWithoutFormSubmissionInput | FieldAnswerCreateOrConnectWithoutFormSubmissionInput[] No
upsert FieldAnswerUpsertWithWhereUniqueWithoutFormSubmissionInput | FieldAnswerUpsertWithWhereUniqueWithoutFormSubmissionInput[] No
createMany FieldAnswerCreateManyFormSubmissionInputEnvelope No
set FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
disconnect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
delete FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
connect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
update FieldAnswerUpdateWithWhereUniqueWithoutFormSubmissionInput | FieldAnswerUpdateWithWhereUniqueWithoutFormSubmissionInput[] No
updateMany FieldAnswerUpdateManyWithWhereWithoutFormSubmissionInput | FieldAnswerUpdateManyWithWhereWithoutFormSubmissionInput[] No
deleteMany FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] No

ConceptCreateNestedOneWithoutFieldListInput

Name Type Nullable
create ConceptCreateWithoutFieldListInput | ConceptUncheckedCreateWithoutFieldListInput No
connectOrCreate ConceptCreateOrConnectWithoutFieldListInput No
connect ConceptWhereUniqueInput No








FieldAnswerUpdateManyWithoutFieldNestedInput

Name Type Nullable
create FieldAnswerCreateWithoutFieldInput | FieldAnswerCreateWithoutFieldInput[] | FieldAnswerUncheckedCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput[] No
connectOrCreate FieldAnswerCreateOrConnectWithoutFieldInput | FieldAnswerCreateOrConnectWithoutFieldInput[] No
upsert FieldAnswerUpsertWithWhereUniqueWithoutFieldInput | FieldAnswerUpsertWithWhereUniqueWithoutFieldInput[] No
createMany FieldAnswerCreateManyFieldInputEnvelope No
set FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
disconnect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
delete FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
connect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
update FieldAnswerUpdateWithWhereUniqueWithoutFieldInput | FieldAnswerUpdateWithWhereUniqueWithoutFieldInput[] No
updateMany FieldAnswerUpdateManyWithWhereWithoutFieldInput | FieldAnswerUpdateManyWithWhereWithoutFieldInput[] No
deleteMany FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] No

FieldOptionUpdateManyWithoutFieldNestedInput

Name Type Nullable
create FieldOptionCreateWithoutFieldInput | FieldOptionCreateWithoutFieldInput[] | FieldOptionUncheckedCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput[] No
connectOrCreate FieldOptionCreateOrConnectWithoutFieldInput | FieldOptionCreateOrConnectWithoutFieldInput[] No
upsert FieldOptionUpsertWithWhereUniqueWithoutFieldInput | FieldOptionUpsertWithWhereUniqueWithoutFieldInput[] No
createMany FieldOptionCreateManyFieldInputEnvelope No
set FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
disconnect FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
delete FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
connect FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
update FieldOptionUpdateWithWhereUniqueWithoutFieldInput | FieldOptionUpdateWithWhereUniqueWithoutFieldInput[] No
updateMany FieldOptionUpdateManyWithWhereWithoutFieldInput | FieldOptionUpdateManyWithWhereWithoutFieldInput[] No
deleteMany FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] No

FormUpdateManyWithoutFieldNestedInput

Name Type Nullable
create FormCreateWithoutFieldInput | FormCreateWithoutFieldInput[] | FormUncheckedCreateWithoutFieldInput | FormUncheckedCreateWithoutFieldInput[] No
connectOrCreate FormCreateOrConnectWithoutFieldInput | FormCreateOrConnectWithoutFieldInput[] No
upsert FormUpsertWithWhereUniqueWithoutFieldInput | FormUpsertWithWhereUniqueWithoutFieldInput[] No
createMany FormCreateManyFieldInputEnvelope No
set FormWhereUniqueInput | FormWhereUniqueInput[] No
disconnect FormWhereUniqueInput | FormWhereUniqueInput[] No
delete FormWhereUniqueInput | FormWhereUniqueInput[] No
connect FormWhereUniqueInput | FormWhereUniqueInput[] No
update FormUpdateWithWhereUniqueWithoutFieldInput | FormUpdateWithWhereUniqueWithoutFieldInput[] No
updateMany FormUpdateManyWithWhereWithoutFieldInput | FormUpdateManyWithWhereWithoutFieldInput[] No
deleteMany FormScalarWhereInput | FormScalarWhereInput[] No

FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput

Name Type Nullable
create FieldAnswerCreateWithoutFieldInput | FieldAnswerCreateWithoutFieldInput[] | FieldAnswerUncheckedCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput[] No
connectOrCreate FieldAnswerCreateOrConnectWithoutFieldInput | FieldAnswerCreateOrConnectWithoutFieldInput[] No
upsert FieldAnswerUpsertWithWhereUniqueWithoutFieldInput | FieldAnswerUpsertWithWhereUniqueWithoutFieldInput[] No
createMany FieldAnswerCreateManyFieldInputEnvelope No
set FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
disconnect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
delete FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
connect FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] No
update FieldAnswerUpdateWithWhereUniqueWithoutFieldInput | FieldAnswerUpdateWithWhereUniqueWithoutFieldInput[] No
updateMany FieldAnswerUpdateManyWithWhereWithoutFieldInput | FieldAnswerUpdateManyWithWhereWithoutFieldInput[] No
deleteMany FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] No

FieldOptionUncheckedUpdateManyWithoutFieldNestedInput

Name Type Nullable
create FieldOptionCreateWithoutFieldInput | FieldOptionCreateWithoutFieldInput[] | FieldOptionUncheckedCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput[] No
connectOrCreate FieldOptionCreateOrConnectWithoutFieldInput | FieldOptionCreateOrConnectWithoutFieldInput[] No
upsert FieldOptionUpsertWithWhereUniqueWithoutFieldInput | FieldOptionUpsertWithWhereUniqueWithoutFieldInput[] No
createMany FieldOptionCreateManyFieldInputEnvelope No
set FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
disconnect FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
delete FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
connect FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] No
update FieldOptionUpdateWithWhereUniqueWithoutFieldInput | FieldOptionUpdateWithWhereUniqueWithoutFieldInput[] No
updateMany FieldOptionUpdateManyWithWhereWithoutFieldInput | FieldOptionUpdateManyWithWhereWithoutFieldInput[] No
deleteMany FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] No

FormUncheckedUpdateManyWithoutFieldNestedInput

Name Type Nullable
create FormCreateWithoutFieldInput | FormCreateWithoutFieldInput[] | FormUncheckedCreateWithoutFieldInput | FormUncheckedCreateWithoutFieldInput[] No
connectOrCreate FormCreateOrConnectWithoutFieldInput | FormCreateOrConnectWithoutFieldInput[] No
upsert FormUpsertWithWhereUniqueWithoutFieldInput | FormUpsertWithWhereUniqueWithoutFieldInput[] No
createMany FormCreateManyFieldInputEnvelope No
set FormWhereUniqueInput | FormWhereUniqueInput[] No
disconnect FormWhereUniqueInput | FormWhereUniqueInput[] No
delete FormWhereUniqueInput | FormWhereUniqueInput[] No
connect FormWhereUniqueInput | FormWhereUniqueInput[] No
update FormUpdateWithWhereUniqueWithoutFieldInput | FormUpdateWithWhereUniqueWithoutFieldInput[] No
updateMany FormUpdateManyWithWhereWithoutFieldInput | FormUpdateManyWithWhereWithoutFieldInput[] No
deleteMany FormScalarWhereInput | FormScalarWhereInput[] No

FieldCreateNestedOneWithoutFieldAnswerListInput

Name Type Nullable
create FieldCreateWithoutFieldAnswerListInput | FieldUncheckedCreateWithoutFieldAnswerListInput No
connectOrCreate FieldCreateOrConnectWithoutFieldAnswerListInput No
connect FieldWhereUniqueInput No




FieldCreateNestedOneWithoutFieldOptionListInput

Name Type Nullable
create FieldCreateWithoutFieldOptionListInput | FieldUncheckedCreateWithoutFieldOptionListInput No
connectOrCreate FieldCreateOrConnectWithoutFieldOptionListInput No
connect FieldWhereUniqueInput No


EncounterTypeCreateNestedOneWithoutEncounterListInput

Name Type Nullable
create EncounterTypeCreateWithoutEncounterListInput | EncounterTypeUncheckedCreateWithoutEncounterListInput No
connectOrCreate EncounterTypeCreateOrConnectWithoutEncounterListInput No
connect EncounterTypeWhereUniqueInput No

FormCreateNestedOneWithoutEncounterListInput

Name Type Nullable
create FormCreateWithoutEncounterListInput | FormUncheckedCreateWithoutEncounterListInput No
connectOrCreate FormCreateOrConnectWithoutEncounterListInput No
connect FormWhereUniqueInput No

LocationCreateNestedOneWithoutEncounterListInput

Name Type Nullable
create LocationCreateWithoutEncounterListInput | LocationUncheckedCreateWithoutEncounterListInput No
connectOrCreate LocationCreateOrConnectWithoutEncounterListInput No
connect LocationWhereUniqueInput No

PatientCreateNestedOneWithoutEncounterListInput

Name Type Nullable
create PatientCreateWithoutEncounterListInput | PatientUncheckedCreateWithoutEncounterListInput No
connectOrCreate PatientCreateOrConnectWithoutEncounterListInput No
connect PatientWhereUniqueInput No

ProviderCreateNestedOneWithoutEncounterListInput

Name Type Nullable
create ProviderCreateWithoutEncounterListInput | ProviderUncheckedCreateWithoutEncounterListInput No
connectOrCreate ProviderCreateOrConnectWithoutEncounterListInput No
connect ProviderWhereUniqueInput No














FormEncounterUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create FormEncounterCreateWithoutEncounterInput | FormEncounterCreateWithoutEncounterInput[] | FormEncounterUncheckedCreateWithoutEncounterInput | FormEncounterUncheckedCreateWithoutEncounterInput[] No
connectOrCreate FormEncounterCreateOrConnectWithoutEncounterInput | FormEncounterCreateOrConnectWithoutEncounterInput[] No
upsert FormEncounterUpsertWithWhereUniqueWithoutEncounterInput | FormEncounterUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany FormEncounterCreateManyEncounterInputEnvelope No
set FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
disconnect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
delete FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
connect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
update FormEncounterUpdateWithWhereUniqueWithoutEncounterInput | FormEncounterUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany FormEncounterUpdateManyWithWhereWithoutEncounterInput | FormEncounterUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] No

FormSubmissionUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create FormSubmissionCreateWithoutEncounterInput | FormSubmissionCreateWithoutEncounterInput[] | FormSubmissionUncheckedCreateWithoutEncounterInput | FormSubmissionUncheckedCreateWithoutEncounterInput[] No
connectOrCreate FormSubmissionCreateOrConnectWithoutEncounterInput | FormSubmissionCreateOrConnectWithoutEncounterInput[] No
upsert FormSubmissionUpsertWithWhereUniqueWithoutEncounterInput | FormSubmissionUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany FormSubmissionCreateManyEncounterInputEnvelope No
set FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
disconnect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
delete FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
connect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
update FormSubmissionUpdateWithWhereUniqueWithoutEncounterInput | FormSubmissionUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany FormSubmissionUpdateManyWithWhereWithoutEncounterInput | FormSubmissionUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] No

ObsUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create ObsCreateWithoutEncounterInput | ObsCreateWithoutEncounterInput[] | ObsUncheckedCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput[] No
connectOrCreate ObsCreateOrConnectWithoutEncounterInput | ObsCreateOrConnectWithoutEncounterInput[] No
upsert ObsUpsertWithWhereUniqueWithoutEncounterInput | ObsUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany ObsCreateManyEncounterInputEnvelope No
set ObsWhereUniqueInput | ObsWhereUniqueInput[] No
disconnect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
delete ObsWhereUniqueInput | ObsWhereUniqueInput[] No
connect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
update ObsUpdateWithWhereUniqueWithoutEncounterInput | ObsUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany ObsUpdateManyWithWhereWithoutEncounterInput | ObsUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany ObsScalarWhereInput | ObsScalarWhereInput[] No

OrderUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create OrderCreateWithoutEncounterInput | OrderCreateWithoutEncounterInput[] | OrderUncheckedCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput[] No
connectOrCreate OrderCreateOrConnectWithoutEncounterInput | OrderCreateOrConnectWithoutEncounterInput[] No
upsert OrderUpsertWithWhereUniqueWithoutEncounterInput | OrderUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany OrderCreateManyEncounterInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutEncounterInput | OrderUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany OrderUpdateManyWithWhereWithoutEncounterInput | OrderUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create FormEncounterCreateWithoutEncounterInput | FormEncounterCreateWithoutEncounterInput[] | FormEncounterUncheckedCreateWithoutEncounterInput | FormEncounterUncheckedCreateWithoutEncounterInput[] No
connectOrCreate FormEncounterCreateOrConnectWithoutEncounterInput | FormEncounterCreateOrConnectWithoutEncounterInput[] No
upsert FormEncounterUpsertWithWhereUniqueWithoutEncounterInput | FormEncounterUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany FormEncounterCreateManyEncounterInputEnvelope No
set FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
disconnect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
delete FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
connect FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] No
update FormEncounterUpdateWithWhereUniqueWithoutEncounterInput | FormEncounterUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany FormEncounterUpdateManyWithWhereWithoutEncounterInput | FormEncounterUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] No

FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create FormSubmissionCreateWithoutEncounterInput | FormSubmissionCreateWithoutEncounterInput[] | FormSubmissionUncheckedCreateWithoutEncounterInput | FormSubmissionUncheckedCreateWithoutEncounterInput[] No
connectOrCreate FormSubmissionCreateOrConnectWithoutEncounterInput | FormSubmissionCreateOrConnectWithoutEncounterInput[] No
upsert FormSubmissionUpsertWithWhereUniqueWithoutEncounterInput | FormSubmissionUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany FormSubmissionCreateManyEncounterInputEnvelope No
set FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
disconnect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
delete FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
connect FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] No
update FormSubmissionUpdateWithWhereUniqueWithoutEncounterInput | FormSubmissionUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany FormSubmissionUpdateManyWithWhereWithoutEncounterInput | FormSubmissionUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] No

ObsUncheckedUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create ObsCreateWithoutEncounterInput | ObsCreateWithoutEncounterInput[] | ObsUncheckedCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput[] No
connectOrCreate ObsCreateOrConnectWithoutEncounterInput | ObsCreateOrConnectWithoutEncounterInput[] No
upsert ObsUpsertWithWhereUniqueWithoutEncounterInput | ObsUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany ObsCreateManyEncounterInputEnvelope No
set ObsWhereUniqueInput | ObsWhereUniqueInput[] No
disconnect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
delete ObsWhereUniqueInput | ObsWhereUniqueInput[] No
connect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
update ObsUpdateWithWhereUniqueWithoutEncounterInput | ObsUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany ObsUpdateManyWithWhereWithoutEncounterInput | ObsUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany ObsScalarWhereInput | ObsScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutEncounterNestedInput

Name Type Nullable
create OrderCreateWithoutEncounterInput | OrderCreateWithoutEncounterInput[] | OrderUncheckedCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput[] No
connectOrCreate OrderCreateOrConnectWithoutEncounterInput | OrderCreateOrConnectWithoutEncounterInput[] No
upsert OrderUpsertWithWhereUniqueWithoutEncounterInput | OrderUpsertWithWhereUniqueWithoutEncounterInput[] No
createMany OrderCreateManyEncounterInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutEncounterInput | OrderUpdateWithWhereUniqueWithoutEncounterInput[] No
updateMany OrderUpdateManyWithWhereWithoutEncounterInput | OrderUpdateManyWithWhereWithoutEncounterInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No



EncounterUpdateManyWithoutEncounterTypeNestedInput

Name Type Nullable
create EncounterCreateWithoutEncounterTypeInput | EncounterCreateWithoutEncounterTypeInput[] | EncounterUncheckedCreateWithoutEncounterTypeInput | EncounterUncheckedCreateWithoutEncounterTypeInput[] No
connectOrCreate EncounterCreateOrConnectWithoutEncounterTypeInput | EncounterCreateOrConnectWithoutEncounterTypeInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutEncounterTypeInput | EncounterUpsertWithWhereUniqueWithoutEncounterTypeInput[] No
createMany EncounterCreateManyEncounterTypeInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutEncounterTypeInput | EncounterUpdateWithWhereUniqueWithoutEncounterTypeInput[] No
updateMany EncounterUpdateManyWithWhereWithoutEncounterTypeInput | EncounterUpdateManyWithWhereWithoutEncounterTypeInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

EncounterUncheckedUpdateManyWithoutEncounterTypeNestedInput

Name Type Nullable
create EncounterCreateWithoutEncounterTypeInput | EncounterCreateWithoutEncounterTypeInput[] | EncounterUncheckedCreateWithoutEncounterTypeInput | EncounterUncheckedCreateWithoutEncounterTypeInput[] No
connectOrCreate EncounterCreateOrConnectWithoutEncounterTypeInput | EncounterCreateOrConnectWithoutEncounterTypeInput[] No
upsert EncounterUpsertWithWhereUniqueWithoutEncounterTypeInput | EncounterUpsertWithWhereUniqueWithoutEncounterTypeInput[] No
createMany EncounterCreateManyEncounterTypeInputEnvelope No
set EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
disconnect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
delete EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
connect EncounterWhereUniqueInput | EncounterWhereUniqueInput[] No
update EncounterUpdateWithWhereUniqueWithoutEncounterTypeInput | EncounterUpdateWithWhereUniqueWithoutEncounterTypeInput[] No
updateMany EncounterUpdateManyWithWhereWithoutEncounterTypeInput | EncounterUpdateManyWithWhereWithoutEncounterTypeInput[] No
deleteMany EncounterScalarWhereInput | EncounterScalarWhereInput[] No

ConceptCreateNestedOneWithoutObsListInput

Name Type Nullable
create ConceptCreateWithoutObsListInput | ConceptUncheckedCreateWithoutObsListInput No
connectOrCreate ConceptCreateOrConnectWithoutObsListInput No
connect ConceptWhereUniqueInput No

EncounterCreateNestedOneWithoutObsListInput

Name Type Nullable
create EncounterCreateWithoutObsListInput | EncounterUncheckedCreateWithoutObsListInput No
connectOrCreate EncounterCreateOrConnectWithoutObsListInput No
connect EncounterWhereUniqueInput No



ConceptCreateNestedOneWithoutOrderListInput

Name Type Nullable
create ConceptCreateWithoutOrderListInput | ConceptUncheckedCreateWithoutOrderListInput No
connectOrCreate ConceptCreateOrConnectWithoutOrderListInput No
connect ConceptWhereUniqueInput No

EncounterCreateNestedOneWithoutOrderListInput

Name Type Nullable
create EncounterCreateWithoutOrderListInput | EncounterUncheckedCreateWithoutOrderListInput No
connectOrCreate EncounterCreateOrConnectWithoutOrderListInput No
connect EncounterWhereUniqueInput No

OrderFrequencyCreateNestedOneWithoutOrderListInput

Name Type Nullable
create OrderFrequencyCreateWithoutOrderListInput | OrderFrequencyUncheckedCreateWithoutOrderListInput No
connectOrCreate OrderFrequencyCreateOrConnectWithoutOrderListInput No
connect OrderFrequencyWhereUniqueInput No

OrderRouteCreateNestedOneWithoutOrderListInput

Name Type Nullable
create OrderRouteCreateWithoutOrderListInput | OrderRouteUncheckedCreateWithoutOrderListInput No
connectOrCreate OrderRouteCreateOrConnectWithoutOrderListInput No
connect OrderRouteWhereUniqueInput No

OrderTypeCreateNestedOneWithoutOrderListInput

Name Type Nullable
create OrderTypeCreateWithoutOrderListInput | OrderTypeUncheckedCreateWithoutOrderListInput No
connectOrCreate OrderTypeCreateOrConnectWithoutOrderListInput No
connect OrderTypeWhereUniqueInput No

OrderUnitCreateNestedOneWithoutOrderListInput

Name Type Nullable
create OrderUnitCreateWithoutOrderListInput | OrderUnitUncheckedCreateWithoutOrderListInput No
connectOrCreate OrderUnitCreateOrConnectWithoutOrderListInput No
connect OrderUnitWhereUniqueInput No









OrderUpdateManyWithoutOrderFrequencyNestedInput

Name Type Nullable
create OrderCreateWithoutOrderFrequencyInput | OrderCreateWithoutOrderFrequencyInput[] | OrderUncheckedCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderFrequencyInput | OrderCreateOrConnectWithoutOrderFrequencyInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderFrequencyInput | OrderUpsertWithWhereUniqueWithoutOrderFrequencyInput[] No
createMany OrderCreateManyOrderFrequencyInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderFrequencyInput | OrderUpdateWithWhereUniqueWithoutOrderFrequencyInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderFrequencyInput | OrderUpdateManyWithWhereWithoutOrderFrequencyInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutOrderFrequencyNestedInput

Name Type Nullable
create OrderCreateWithoutOrderFrequencyInput | OrderCreateWithoutOrderFrequencyInput[] | OrderUncheckedCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderFrequencyInput | OrderCreateOrConnectWithoutOrderFrequencyInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderFrequencyInput | OrderUpsertWithWhereUniqueWithoutOrderFrequencyInput[] No
createMany OrderCreateManyOrderFrequencyInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderFrequencyInput | OrderUpdateWithWhereUniqueWithoutOrderFrequencyInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderFrequencyInput | OrderUpdateManyWithWhereWithoutOrderFrequencyInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No



OrderUpdateManyWithoutOrderRouteNestedInput

Name Type Nullable
create OrderCreateWithoutOrderRouteInput | OrderCreateWithoutOrderRouteInput[] | OrderUncheckedCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderRouteInput | OrderCreateOrConnectWithoutOrderRouteInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderRouteInput | OrderUpsertWithWhereUniqueWithoutOrderRouteInput[] No
createMany OrderCreateManyOrderRouteInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderRouteInput | OrderUpdateWithWhereUniqueWithoutOrderRouteInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderRouteInput | OrderUpdateManyWithWhereWithoutOrderRouteInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutOrderRouteNestedInput

Name Type Nullable
create OrderCreateWithoutOrderRouteInput | OrderCreateWithoutOrderRouteInput[] | OrderUncheckedCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderRouteInput | OrderCreateOrConnectWithoutOrderRouteInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderRouteInput | OrderUpsertWithWhereUniqueWithoutOrderRouteInput[] No
createMany OrderCreateManyOrderRouteInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderRouteInput | OrderUpdateWithWhereUniqueWithoutOrderRouteInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderRouteInput | OrderUpdateManyWithWhereWithoutOrderRouteInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No



OrderUpdateManyWithoutOrderTypeNestedInput

Name Type Nullable
create OrderCreateWithoutOrderTypeInput | OrderCreateWithoutOrderTypeInput[] | OrderUncheckedCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderTypeInput | OrderCreateOrConnectWithoutOrderTypeInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderTypeInput | OrderUpsertWithWhereUniqueWithoutOrderTypeInput[] No
createMany OrderCreateManyOrderTypeInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderTypeInput | OrderUpdateWithWhereUniqueWithoutOrderTypeInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderTypeInput | OrderUpdateManyWithWhereWithoutOrderTypeInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutOrderTypeNestedInput

Name Type Nullable
create OrderCreateWithoutOrderTypeInput | OrderCreateWithoutOrderTypeInput[] | OrderUncheckedCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderTypeInput | OrderCreateOrConnectWithoutOrderTypeInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderTypeInput | OrderUpsertWithWhereUniqueWithoutOrderTypeInput[] No
createMany OrderCreateManyOrderTypeInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderTypeInput | OrderUpdateWithWhereUniqueWithoutOrderTypeInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderTypeInput | OrderUpdateManyWithWhereWithoutOrderTypeInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No



OrderUpdateManyWithoutOrderUnitNestedInput

Name Type Nullable
create OrderCreateWithoutOrderUnitInput | OrderCreateWithoutOrderUnitInput[] | OrderUncheckedCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderUnitInput | OrderCreateOrConnectWithoutOrderUnitInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderUnitInput | OrderUpsertWithWhereUniqueWithoutOrderUnitInput[] No
createMany OrderCreateManyOrderUnitInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderUnitInput | OrderUpdateWithWhereUniqueWithoutOrderUnitInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderUnitInput | OrderUpdateManyWithWhereWithoutOrderUnitInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutOrderUnitNestedInput

Name Type Nullable
create OrderCreateWithoutOrderUnitInput | OrderCreateWithoutOrderUnitInput[] | OrderUncheckedCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput[] No
connectOrCreate OrderCreateOrConnectWithoutOrderUnitInput | OrderCreateOrConnectWithoutOrderUnitInput[] No
upsert OrderUpsertWithWhereUniqueWithoutOrderUnitInput | OrderUpsertWithWhereUniqueWithoutOrderUnitInput[] No
createMany OrderCreateManyOrderUnitInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutOrderUnitInput | OrderUpdateWithWhereUniqueWithoutOrderUnitInput[] No
updateMany OrderUpdateManyWithWhereWithoutOrderUnitInput | OrderUpdateManyWithWhereWithoutOrderUnitInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

ConceptClassCreateNestedOneWithoutConceptListInput

Name Type Nullable
create ConceptClassCreateWithoutConceptListInput | ConceptClassUncheckedCreateWithoutConceptListInput No
connectOrCreate ConceptClassCreateOrConnectWithoutConceptListInput No
connect ConceptClassWhereUniqueInput No


ConceptMapCreateNestedOneWithoutConceptListInput

Name Type Nullable
create ConceptMapCreateWithoutConceptListInput | ConceptMapUncheckedCreateWithoutConceptListInput No
connectOrCreate ConceptMapCreateOrConnectWithoutConceptListInput No
connect ConceptMapWhereUniqueInput No

ConceptSetCreateNestedOneWithoutConceptListInput

Name Type Nullable
create ConceptSetCreateWithoutConceptListInput | ConceptSetUncheckedCreateWithoutConceptListInput No
connectOrCreate ConceptSetCreateOrConnectWithoutConceptListInput No
connect ConceptSetWhereUniqueInput No

ConceptSourceCreateNestedOneWithoutConceptListInput

Name Type Nullable
create ConceptSourceCreateWithoutConceptListInput | ConceptSourceUncheckedCreateWithoutConceptListInput No
connectOrCreate ConceptSourceCreateOrConnectWithoutConceptListInput No
connect ConceptSourceWhereUniqueInput No
























ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput

Name Type Nullable
create ConceptAnswerCreateWithoutAnswerConceptInput | ConceptAnswerCreateWithoutAnswerConceptInput[] | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput[] No
connectOrCreate ConceptAnswerCreateOrConnectWithoutAnswerConceptInput | ConceptAnswerCreateOrConnectWithoutAnswerConceptInput[] No
upsert ConceptAnswerUpsertWithWhereUniqueWithoutAnswerConceptInput | ConceptAnswerUpsertWithWhereUniqueWithoutAnswerConceptInput[] No
createMany ConceptAnswerCreateManyAnswerConceptInputEnvelope No
set ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
disconnect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
delete ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
connect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
update ConceptAnswerUpdateWithWhereUniqueWithoutAnswerConceptInput | ConceptAnswerUpdateWithWhereUniqueWithoutAnswerConceptInput[] No
updateMany ConceptAnswerUpdateManyWithWhereWithoutAnswerConceptInput | ConceptAnswerUpdateManyWithWhereWithoutAnswerConceptInput[] No
deleteMany ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] No

ConceptAnswerUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptAnswerCreateWithoutConceptInput | ConceptAnswerCreateWithoutConceptInput[] | ConceptAnswerUncheckedCreateWithoutConceptInput | ConceptAnswerUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptAnswerCreateOrConnectWithoutConceptInput | ConceptAnswerCreateOrConnectWithoutConceptInput[] No
upsert ConceptAnswerUpsertWithWhereUniqueWithoutConceptInput | ConceptAnswerUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptAnswerCreateManyConceptInputEnvelope No
set ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
disconnect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
delete ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
connect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
update ConceptAnswerUpdateWithWhereUniqueWithoutConceptInput | ConceptAnswerUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptAnswerUpdateManyWithWhereWithoutConceptInput | ConceptAnswerUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] No

ConceptNameUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptNameCreateWithoutConceptInput | ConceptNameCreateWithoutConceptInput[] | ConceptNameUncheckedCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptNameCreateOrConnectWithoutConceptInput | ConceptNameCreateOrConnectWithoutConceptInput[] No
upsert ConceptNameUpsertWithWhereUniqueWithoutConceptInput | ConceptNameUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptNameCreateManyConceptInputEnvelope No
set ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
disconnect ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
delete ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
connect ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
update ConceptNameUpdateWithWhereUniqueWithoutConceptInput | ConceptNameUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptNameUpdateManyWithWhereWithoutConceptInput | ConceptNameUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptNameScalarWhereInput | ConceptNameScalarWhereInput[] No

ConceptNumericUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptNumericCreateWithoutConceptInput | ConceptNumericCreateWithoutConceptInput[] | ConceptNumericUncheckedCreateWithoutConceptInput | ConceptNumericUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptNumericCreateOrConnectWithoutConceptInput | ConceptNumericCreateOrConnectWithoutConceptInput[] No
upsert ConceptNumericUpsertWithWhereUniqueWithoutConceptInput | ConceptNumericUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptNumericCreateManyConceptInputEnvelope No
set ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
disconnect ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
delete ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
connect ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
update ConceptNumericUpdateWithWhereUniqueWithoutConceptInput | ConceptNumericUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptNumericUpdateManyWithWhereWithoutConceptInput | ConceptNumericUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptNumericScalarWhereInput | ConceptNumericScalarWhereInput[] No

ConceptProposalUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptProposalCreateWithoutConceptInput | ConceptProposalCreateWithoutConceptInput[] | ConceptProposalUncheckedCreateWithoutConceptInput | ConceptProposalUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptProposalCreateOrConnectWithoutConceptInput | ConceptProposalCreateOrConnectWithoutConceptInput[] No
upsert ConceptProposalUpsertWithWhereUniqueWithoutConceptInput | ConceptProposalUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptProposalCreateManyConceptInputEnvelope No
set ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
disconnect ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
delete ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
connect ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
update ConceptProposalUpdateWithWhereUniqueWithoutConceptInput | ConceptProposalUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptProposalUpdateManyWithWhereWithoutConceptInput | ConceptProposalUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptProposalScalarWhereInput | ConceptProposalScalarWhereInput[] No

ConceptWordUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptWordCreateWithoutConceptInput | ConceptWordCreateWithoutConceptInput[] | ConceptWordUncheckedCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptWordCreateOrConnectWithoutConceptInput | ConceptWordCreateOrConnectWithoutConceptInput[] No
upsert ConceptWordUpsertWithWhereUniqueWithoutConceptInput | ConceptWordUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptWordCreateManyConceptInputEnvelope No
set ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
disconnect ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
delete ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
connect ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
update ConceptWordUpdateWithWhereUniqueWithoutConceptInput | ConceptWordUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptWordUpdateManyWithWhereWithoutConceptInput | ConceptWordUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptWordScalarWhereInput | ConceptWordScalarWhereInput[] No

FieldUpdateManyWithoutConceptNestedInput

Name Type Nullable
create FieldCreateWithoutConceptInput | FieldCreateWithoutConceptInput[] | FieldUncheckedCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput[] No
connectOrCreate FieldCreateOrConnectWithoutConceptInput | FieldCreateOrConnectWithoutConceptInput[] No
upsert FieldUpsertWithWhereUniqueWithoutConceptInput | FieldUpsertWithWhereUniqueWithoutConceptInput[] No
createMany FieldCreateManyConceptInputEnvelope No
set FieldWhereUniqueInput | FieldWhereUniqueInput[] No
disconnect FieldWhereUniqueInput | FieldWhereUniqueInput[] No
delete FieldWhereUniqueInput | FieldWhereUniqueInput[] No
connect FieldWhereUniqueInput | FieldWhereUniqueInput[] No
update FieldUpdateWithWhereUniqueWithoutConceptInput | FieldUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany FieldUpdateManyWithWhereWithoutConceptInput | FieldUpdateManyWithWhereWithoutConceptInput[] No
deleteMany FieldScalarWhereInput | FieldScalarWhereInput[] No

ObsUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ObsCreateWithoutConceptInput | ObsCreateWithoutConceptInput[] | ObsUncheckedCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput[] No
connectOrCreate ObsCreateOrConnectWithoutConceptInput | ObsCreateOrConnectWithoutConceptInput[] No
upsert ObsUpsertWithWhereUniqueWithoutConceptInput | ObsUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ObsCreateManyConceptInputEnvelope No
set ObsWhereUniqueInput | ObsWhereUniqueInput[] No
disconnect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
delete ObsWhereUniqueInput | ObsWhereUniqueInput[] No
connect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
update ObsUpdateWithWhereUniqueWithoutConceptInput | ObsUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ObsUpdateManyWithWhereWithoutConceptInput | ObsUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ObsScalarWhereInput | ObsScalarWhereInput[] No

OrderUpdateManyWithoutConceptNestedInput

Name Type Nullable
create OrderCreateWithoutConceptInput | OrderCreateWithoutConceptInput[] | OrderUncheckedCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput[] No
connectOrCreate OrderCreateOrConnectWithoutConceptInput | OrderCreateOrConnectWithoutConceptInput[] No
upsert OrderUpsertWithWhereUniqueWithoutConceptInput | OrderUpsertWithWhereUniqueWithoutConceptInput[] No
createMany OrderCreateManyConceptInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutConceptInput | OrderUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany OrderUpdateManyWithWhereWithoutConceptInput | OrderUpdateManyWithWhereWithoutConceptInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput

Name Type Nullable
create ConceptAnswerCreateWithoutAnswerConceptInput | ConceptAnswerCreateWithoutAnswerConceptInput[] | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput[] No
connectOrCreate ConceptAnswerCreateOrConnectWithoutAnswerConceptInput | ConceptAnswerCreateOrConnectWithoutAnswerConceptInput[] No
upsert ConceptAnswerUpsertWithWhereUniqueWithoutAnswerConceptInput | ConceptAnswerUpsertWithWhereUniqueWithoutAnswerConceptInput[] No
createMany ConceptAnswerCreateManyAnswerConceptInputEnvelope No
set ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
disconnect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
delete ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
connect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
update ConceptAnswerUpdateWithWhereUniqueWithoutAnswerConceptInput | ConceptAnswerUpdateWithWhereUniqueWithoutAnswerConceptInput[] No
updateMany ConceptAnswerUpdateManyWithWhereWithoutAnswerConceptInput | ConceptAnswerUpdateManyWithWhereWithoutAnswerConceptInput[] No
deleteMany ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] No

ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptAnswerCreateWithoutConceptInput | ConceptAnswerCreateWithoutConceptInput[] | ConceptAnswerUncheckedCreateWithoutConceptInput | ConceptAnswerUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptAnswerCreateOrConnectWithoutConceptInput | ConceptAnswerCreateOrConnectWithoutConceptInput[] No
upsert ConceptAnswerUpsertWithWhereUniqueWithoutConceptInput | ConceptAnswerUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptAnswerCreateManyConceptInputEnvelope No
set ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
disconnect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
delete ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
connect ConceptAnswerWhereUniqueInput | ConceptAnswerWhereUniqueInput[] No
update ConceptAnswerUpdateWithWhereUniqueWithoutConceptInput | ConceptAnswerUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptAnswerUpdateManyWithWhereWithoutConceptInput | ConceptAnswerUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] No

ConceptNameUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptNameCreateWithoutConceptInput | ConceptNameCreateWithoutConceptInput[] | ConceptNameUncheckedCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptNameCreateOrConnectWithoutConceptInput | ConceptNameCreateOrConnectWithoutConceptInput[] No
upsert ConceptNameUpsertWithWhereUniqueWithoutConceptInput | ConceptNameUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptNameCreateManyConceptInputEnvelope No
set ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
disconnect ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
delete ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
connect ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] No
update ConceptNameUpdateWithWhereUniqueWithoutConceptInput | ConceptNameUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptNameUpdateManyWithWhereWithoutConceptInput | ConceptNameUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptNameScalarWhereInput | ConceptNameScalarWhereInput[] No

ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptNumericCreateWithoutConceptInput | ConceptNumericCreateWithoutConceptInput[] | ConceptNumericUncheckedCreateWithoutConceptInput | ConceptNumericUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptNumericCreateOrConnectWithoutConceptInput | ConceptNumericCreateOrConnectWithoutConceptInput[] No
upsert ConceptNumericUpsertWithWhereUniqueWithoutConceptInput | ConceptNumericUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptNumericCreateManyConceptInputEnvelope No
set ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
disconnect ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
delete ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
connect ConceptNumericWhereUniqueInput | ConceptNumericWhereUniqueInput[] No
update ConceptNumericUpdateWithWhereUniqueWithoutConceptInput | ConceptNumericUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptNumericUpdateManyWithWhereWithoutConceptInput | ConceptNumericUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptNumericScalarWhereInput | ConceptNumericScalarWhereInput[] No

ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptProposalCreateWithoutConceptInput | ConceptProposalCreateWithoutConceptInput[] | ConceptProposalUncheckedCreateWithoutConceptInput | ConceptProposalUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptProposalCreateOrConnectWithoutConceptInput | ConceptProposalCreateOrConnectWithoutConceptInput[] No
upsert ConceptProposalUpsertWithWhereUniqueWithoutConceptInput | ConceptProposalUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptProposalCreateManyConceptInputEnvelope No
set ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
disconnect ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
delete ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
connect ConceptProposalWhereUniqueInput | ConceptProposalWhereUniqueInput[] No
update ConceptProposalUpdateWithWhereUniqueWithoutConceptInput | ConceptProposalUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptProposalUpdateManyWithWhereWithoutConceptInput | ConceptProposalUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptProposalScalarWhereInput | ConceptProposalScalarWhereInput[] No

ConceptWordUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ConceptWordCreateWithoutConceptInput | ConceptWordCreateWithoutConceptInput[] | ConceptWordUncheckedCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput[] No
connectOrCreate ConceptWordCreateOrConnectWithoutConceptInput | ConceptWordCreateOrConnectWithoutConceptInput[] No
upsert ConceptWordUpsertWithWhereUniqueWithoutConceptInput | ConceptWordUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ConceptWordCreateManyConceptInputEnvelope No
set ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
disconnect ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
delete ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
connect ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] No
update ConceptWordUpdateWithWhereUniqueWithoutConceptInput | ConceptWordUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ConceptWordUpdateManyWithWhereWithoutConceptInput | ConceptWordUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ConceptWordScalarWhereInput | ConceptWordScalarWhereInput[] No

FieldUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create FieldCreateWithoutConceptInput | FieldCreateWithoutConceptInput[] | FieldUncheckedCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput[] No
connectOrCreate FieldCreateOrConnectWithoutConceptInput | FieldCreateOrConnectWithoutConceptInput[] No
upsert FieldUpsertWithWhereUniqueWithoutConceptInput | FieldUpsertWithWhereUniqueWithoutConceptInput[] No
createMany FieldCreateManyConceptInputEnvelope No
set FieldWhereUniqueInput | FieldWhereUniqueInput[] No
disconnect FieldWhereUniqueInput | FieldWhereUniqueInput[] No
delete FieldWhereUniqueInput | FieldWhereUniqueInput[] No
connect FieldWhereUniqueInput | FieldWhereUniqueInput[] No
update FieldUpdateWithWhereUniqueWithoutConceptInput | FieldUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany FieldUpdateManyWithWhereWithoutConceptInput | FieldUpdateManyWithWhereWithoutConceptInput[] No
deleteMany FieldScalarWhereInput | FieldScalarWhereInput[] No

ObsUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create ObsCreateWithoutConceptInput | ObsCreateWithoutConceptInput[] | ObsUncheckedCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput[] No
connectOrCreate ObsCreateOrConnectWithoutConceptInput | ObsCreateOrConnectWithoutConceptInput[] No
upsert ObsUpsertWithWhereUniqueWithoutConceptInput | ObsUpsertWithWhereUniqueWithoutConceptInput[] No
createMany ObsCreateManyConceptInputEnvelope No
set ObsWhereUniqueInput | ObsWhereUniqueInput[] No
disconnect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
delete ObsWhereUniqueInput | ObsWhereUniqueInput[] No
connect ObsWhereUniqueInput | ObsWhereUniqueInput[] No
update ObsUpdateWithWhereUniqueWithoutConceptInput | ObsUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany ObsUpdateManyWithWhereWithoutConceptInput | ObsUpdateManyWithWhereWithoutConceptInput[] No
deleteMany ObsScalarWhereInput | ObsScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutConceptNestedInput

Name Type Nullable
create OrderCreateWithoutConceptInput | OrderCreateWithoutConceptInput[] | OrderUncheckedCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput[] No
connectOrCreate OrderCreateOrConnectWithoutConceptInput | OrderCreateOrConnectWithoutConceptInput[] No
upsert OrderUpsertWithWhereUniqueWithoutConceptInput | OrderUpsertWithWhereUniqueWithoutConceptInput[] No
createMany OrderCreateManyConceptInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutConceptInput | OrderUpdateWithWhereUniqueWithoutConceptInput[] No
updateMany OrderUpdateManyWithWhereWithoutConceptInput | OrderUpdateManyWithWhereWithoutConceptInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

ConceptCreateNestedOneWithoutAnswerListInput

Name Type Nullable
create ConceptCreateWithoutAnswerListInput | ConceptUncheckedCreateWithoutAnswerListInput No
connectOrCreate ConceptCreateOrConnectWithoutAnswerListInput No
connect ConceptWhereUniqueInput No

ConceptCreateNestedOneWithoutMetaListInput

Name Type Nullable
create ConceptCreateWithoutMetaListInput | ConceptUncheckedCreateWithoutMetaListInput No
connectOrCreate ConceptCreateOrConnectWithoutMetaListInput No
connect ConceptWhereUniqueInput No





ConceptUpdateManyWithoutConceptClassNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptClassInput | ConceptCreateWithoutConceptClassInput[] | ConceptUncheckedCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptClassInput | ConceptCreateOrConnectWithoutConceptClassInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptClassInput | ConceptUpsertWithWhereUniqueWithoutConceptClassInput[] No
createMany ConceptCreateManyConceptClassInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptClassInput | ConceptUpdateWithWhereUniqueWithoutConceptClassInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptClassInput | ConceptUpdateManyWithWhereWithoutConceptClassInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutConceptClassNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptClassInput | ConceptCreateWithoutConceptClassInput[] | ConceptUncheckedCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptClassInput | ConceptCreateOrConnectWithoutConceptClassInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptClassInput | ConceptUpsertWithWhereUniqueWithoutConceptClassInput[] No
createMany ConceptCreateManyConceptClassInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptClassInput | ConceptUpdateWithWhereUniqueWithoutConceptClassInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptClassInput | ConceptUpdateManyWithWhereWithoutConceptClassInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No



ConceptUpdateManyWithoutConceptDatatypeNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptDatatypeInput | ConceptCreateWithoutConceptDatatypeInput[] | ConceptUncheckedCreateWithoutConceptDatatypeInput | ConceptUncheckedCreateWithoutConceptDatatypeInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptDatatypeInput | ConceptCreateOrConnectWithoutConceptDatatypeInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptDatatypeInput | ConceptUpsertWithWhereUniqueWithoutConceptDatatypeInput[] No
createMany ConceptCreateManyConceptDatatypeInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptDatatypeInput | ConceptUpdateWithWhereUniqueWithoutConceptDatatypeInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptDatatypeInput | ConceptUpdateManyWithWhereWithoutConceptDatatypeInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutConceptDatatypeNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptDatatypeInput | ConceptCreateWithoutConceptDatatypeInput[] | ConceptUncheckedCreateWithoutConceptDatatypeInput | ConceptUncheckedCreateWithoutConceptDatatypeInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptDatatypeInput | ConceptCreateOrConnectWithoutConceptDatatypeInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptDatatypeInput | ConceptUpsertWithWhereUniqueWithoutConceptDatatypeInput[] No
createMany ConceptCreateManyConceptDatatypeInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptDatatypeInput | ConceptUpdateWithWhereUniqueWithoutConceptDatatypeInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptDatatypeInput | ConceptUpdateManyWithWhereWithoutConceptDatatypeInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No



ConceptUpdateManyWithoutConceptMapNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptMapInput | ConceptCreateWithoutConceptMapInput[] | ConceptUncheckedCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptMapInput | ConceptCreateOrConnectWithoutConceptMapInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptMapInput | ConceptUpsertWithWhereUniqueWithoutConceptMapInput[] No
createMany ConceptCreateManyConceptMapInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptMapInput | ConceptUpdateWithWhereUniqueWithoutConceptMapInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptMapInput | ConceptUpdateManyWithWhereWithoutConceptMapInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutConceptMapNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptMapInput | ConceptCreateWithoutConceptMapInput[] | ConceptUncheckedCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptMapInput | ConceptCreateOrConnectWithoutConceptMapInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptMapInput | ConceptUpsertWithWhereUniqueWithoutConceptMapInput[] No
createMany ConceptCreateManyConceptMapInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptMapInput | ConceptUpdateWithWhereUniqueWithoutConceptMapInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptMapInput | ConceptUpdateManyWithWhereWithoutConceptMapInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptCreateNestedOneWithoutConceptNameListInput

Name Type Nullable
create ConceptCreateWithoutConceptNameListInput | ConceptUncheckedCreateWithoutConceptNameListInput No
connectOrCreate ConceptCreateOrConnectWithoutConceptNameListInput No
connect ConceptWhereUniqueInput No


ConceptCreateNestedOneWithoutConceptNumericListInput

Name Type Nullable
create ConceptCreateWithoutConceptNumericListInput | ConceptUncheckedCreateWithoutConceptNumericListInput No
connectOrCreate ConceptCreateOrConnectWithoutConceptNumericListInput No
connect ConceptWhereUniqueInput No


ConceptCreateNestedOneWithoutConceptProposalListInput

Name Type Nullable
create ConceptCreateWithoutConceptProposalListInput | ConceptUncheckedCreateWithoutConceptProposalListInput No
connectOrCreate ConceptCreateOrConnectWithoutConceptProposalListInput No
connect ConceptWhereUniqueInput No




ConceptUpdateManyWithoutConceptSetNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptSetInput | ConceptCreateWithoutConceptSetInput[] | ConceptUncheckedCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptSetInput | ConceptCreateOrConnectWithoutConceptSetInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptSetInput | ConceptUpsertWithWhereUniqueWithoutConceptSetInput[] No
createMany ConceptCreateManyConceptSetInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptSetInput | ConceptUpdateWithWhereUniqueWithoutConceptSetInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptSetInput | ConceptUpdateManyWithWhereWithoutConceptSetInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutConceptSetNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptSetInput | ConceptCreateWithoutConceptSetInput[] | ConceptUncheckedCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptSetInput | ConceptCreateOrConnectWithoutConceptSetInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptSetInput | ConceptUpsertWithWhereUniqueWithoutConceptSetInput[] No
createMany ConceptCreateManyConceptSetInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptSetInput | ConceptUpdateWithWhereUniqueWithoutConceptSetInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptSetInput | ConceptUpdateManyWithWhereWithoutConceptSetInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No



ConceptUpdateManyWithoutConceptSourceNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptSourceInput | ConceptCreateWithoutConceptSourceInput[] | ConceptUncheckedCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptSourceInput | ConceptCreateOrConnectWithoutConceptSourceInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptSourceInput | ConceptUpsertWithWhereUniqueWithoutConceptSourceInput[] No
createMany ConceptCreateManyConceptSourceInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptSourceInput | ConceptUpdateWithWhereUniqueWithoutConceptSourceInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptSourceInput | ConceptUpdateManyWithWhereWithoutConceptSourceInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutConceptSourceNestedInput

Name Type Nullable
create ConceptCreateWithoutConceptSourceInput | ConceptCreateWithoutConceptSourceInput[] | ConceptUncheckedCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput[] No
connectOrCreate ConceptCreateOrConnectWithoutConceptSourceInput | ConceptCreateOrConnectWithoutConceptSourceInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutConceptSourceInput | ConceptUpsertWithWhereUniqueWithoutConceptSourceInput[] No
createMany ConceptCreateManyConceptSourceInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutConceptSourceInput | ConceptUpdateWithWhereUniqueWithoutConceptSourceInput[] No
updateMany ConceptUpdateManyWithWhereWithoutConceptSourceInput | ConceptUpdateManyWithWhereWithoutConceptSourceInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptCreateNestedOneWithoutConceptWordListInput

Name Type Nullable
create ConceptCreateWithoutConceptWordListInput | ConceptUncheckedCreateWithoutConceptWordListInput No
connectOrCreate ConceptCreateOrConnectWithoutConceptWordListInput No
connect ConceptWhereUniqueInput No




FormResourceUpdateManyWithoutResourceNestedInput

Name Type Nullable
create FormResourceCreateWithoutResourceInput | FormResourceCreateWithoutResourceInput[] | FormResourceUncheckedCreateWithoutResourceInput | FormResourceUncheckedCreateWithoutResourceInput[] No
connectOrCreate FormResourceCreateOrConnectWithoutResourceInput | FormResourceCreateOrConnectWithoutResourceInput[] No
upsert FormResourceUpsertWithWhereUniqueWithoutResourceInput | FormResourceUpsertWithWhereUniqueWithoutResourceInput[] No
createMany FormResourceCreateManyResourceInputEnvelope No
set FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
disconnect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
delete FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
connect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
update FormResourceUpdateWithWhereUniqueWithoutResourceInput | FormResourceUpdateWithWhereUniqueWithoutResourceInput[] No
updateMany FormResourceUpdateManyWithWhereWithoutResourceInput | FormResourceUpdateManyWithWhereWithoutResourceInput[] No
deleteMany FormResourceScalarWhereInput | FormResourceScalarWhereInput[] No

FormResourceUncheckedUpdateManyWithoutResourceNestedInput

Name Type Nullable
create FormResourceCreateWithoutResourceInput | FormResourceCreateWithoutResourceInput[] | FormResourceUncheckedCreateWithoutResourceInput | FormResourceUncheckedCreateWithoutResourceInput[] No
connectOrCreate FormResourceCreateOrConnectWithoutResourceInput | FormResourceCreateOrConnectWithoutResourceInput[] No
upsert FormResourceUpsertWithWhereUniqueWithoutResourceInput | FormResourceUpsertWithWhereUniqueWithoutResourceInput[] No
createMany FormResourceCreateManyResourceInputEnvelope No
set FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
disconnect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
delete FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
connect FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] No
update FormResourceUpdateWithWhereUniqueWithoutResourceInput | FormResourceUpdateWithWhereUniqueWithoutResourceInput[] No
updateMany FormResourceUpdateManyWithWhereWithoutResourceInput | FormResourceUpdateManyWithWhereWithoutResourceInput[] No
deleteMany FormResourceScalarWhereInput | FormResourceScalarWhereInput[] No

BlogPostAuthorCreateNestedOneWithoutBlogPostListInput

Name Type Nullable
create BlogPostAuthorCreateWithoutBlogPostListInput | BlogPostAuthorUncheckedCreateWithoutBlogPostListInput No
connectOrCreate BlogPostAuthorCreateOrConnectWithoutBlogPostListInput No
connect BlogPostAuthorWhereUniqueInput No






BlogPostTagArrowUpdateManyWithoutPostNestedInput

Name Type Nullable
create BlogPostTagArrowCreateWithoutPostInput | BlogPostTagArrowCreateWithoutPostInput[] | BlogPostTagArrowUncheckedCreateWithoutPostInput | BlogPostTagArrowUncheckedCreateWithoutPostInput[] No
connectOrCreate BlogPostTagArrowCreateOrConnectWithoutPostInput | BlogPostTagArrowCreateOrConnectWithoutPostInput[] No
upsert BlogPostTagArrowUpsertWithWhereUniqueWithoutPostInput | BlogPostTagArrowUpsertWithWhereUniqueWithoutPostInput[] No
createMany BlogPostTagArrowCreateManyPostInputEnvelope No
set BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
disconnect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
delete BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
connect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
update BlogPostTagArrowUpdateWithWhereUniqueWithoutPostInput | BlogPostTagArrowUpdateWithWhereUniqueWithoutPostInput[] No
updateMany BlogPostTagArrowUpdateManyWithWhereWithoutPostInput | BlogPostTagArrowUpdateManyWithWhereWithoutPostInput[] No
deleteMany BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] No

BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput

Name Type Nullable
create BlogPostTagArrowCreateWithoutPostInput | BlogPostTagArrowCreateWithoutPostInput[] | BlogPostTagArrowUncheckedCreateWithoutPostInput | BlogPostTagArrowUncheckedCreateWithoutPostInput[] No
connectOrCreate BlogPostTagArrowCreateOrConnectWithoutPostInput | BlogPostTagArrowCreateOrConnectWithoutPostInput[] No
upsert BlogPostTagArrowUpsertWithWhereUniqueWithoutPostInput | BlogPostTagArrowUpsertWithWhereUniqueWithoutPostInput[] No
createMany BlogPostTagArrowCreateManyPostInputEnvelope No
set BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
disconnect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
delete BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
connect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
update BlogPostTagArrowUpdateWithWhereUniqueWithoutPostInput | BlogPostTagArrowUpdateWithWhereUniqueWithoutPostInput[] No
updateMany BlogPostTagArrowUpdateManyWithWhereWithoutPostInput | BlogPostTagArrowUpdateManyWithWhereWithoutPostInput[] No
deleteMany BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] No



BlogPostTagArrowUpdateManyWithoutTagNestedInput

Name Type Nullable
create BlogPostTagArrowCreateWithoutTagInput | BlogPostTagArrowCreateWithoutTagInput[] | BlogPostTagArrowUncheckedCreateWithoutTagInput | BlogPostTagArrowUncheckedCreateWithoutTagInput[] No
connectOrCreate BlogPostTagArrowCreateOrConnectWithoutTagInput | BlogPostTagArrowCreateOrConnectWithoutTagInput[] No
upsert BlogPostTagArrowUpsertWithWhereUniqueWithoutTagInput | BlogPostTagArrowUpsertWithWhereUniqueWithoutTagInput[] No
createMany BlogPostTagArrowCreateManyTagInputEnvelope No
set BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
disconnect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
delete BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
connect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
update BlogPostTagArrowUpdateWithWhereUniqueWithoutTagInput | BlogPostTagArrowUpdateWithWhereUniqueWithoutTagInput[] No
updateMany BlogPostTagArrowUpdateManyWithWhereWithoutTagInput | BlogPostTagArrowUpdateManyWithWhereWithoutTagInput[] No
deleteMany BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] No

BlogPostTagArrowUncheckedUpdateManyWithoutTagNestedInput

Name Type Nullable
create BlogPostTagArrowCreateWithoutTagInput | BlogPostTagArrowCreateWithoutTagInput[] | BlogPostTagArrowUncheckedCreateWithoutTagInput | BlogPostTagArrowUncheckedCreateWithoutTagInput[] No
connectOrCreate BlogPostTagArrowCreateOrConnectWithoutTagInput | BlogPostTagArrowCreateOrConnectWithoutTagInput[] No
upsert BlogPostTagArrowUpsertWithWhereUniqueWithoutTagInput | BlogPostTagArrowUpsertWithWhereUniqueWithoutTagInput[] No
createMany BlogPostTagArrowCreateManyTagInputEnvelope No
set BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
disconnect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
delete BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
connect BlogPostTagArrowWhereUniqueInput | BlogPostTagArrowWhereUniqueInput[] No
update BlogPostTagArrowUpdateWithWhereUniqueWithoutTagInput | BlogPostTagArrowUpdateWithWhereUniqueWithoutTagInput[] No
updateMany BlogPostTagArrowUpdateManyWithWhereWithoutTagInput | BlogPostTagArrowUpdateManyWithWhereWithoutTagInput[] No
deleteMany BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] No

BlogPostCreateNestedOneWithoutTagArrowListInput

Name Type Nullable
create BlogPostCreateWithoutTagArrowListInput | BlogPostUncheckedCreateWithoutTagArrowListInput No
connectOrCreate BlogPostCreateOrConnectWithoutTagArrowListInput No
connect BlogPostWhereUniqueInput No

BlogPostTagCreateNestedOneWithoutPostArrowListInput

Name Type Nullable
create BlogPostTagCreateWithoutPostArrowListInput | BlogPostTagUncheckedCreateWithoutPostArrowListInput No
connectOrCreate BlogPostTagCreateOrConnectWithoutPostArrowListInput No
connect BlogPostTagWhereUniqueInput No





BlogPostUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create BlogPostCreateWithoutAuthorInput | BlogPostCreateWithoutAuthorInput[] | BlogPostUncheckedCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput[] No
connectOrCreate BlogPostCreateOrConnectWithoutAuthorInput | BlogPostCreateOrConnectWithoutAuthorInput[] No
upsert BlogPostUpsertWithWhereUniqueWithoutAuthorInput | BlogPostUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany BlogPostCreateManyAuthorInputEnvelope No
set BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
disconnect BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
delete BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
connect BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
update BlogPostUpdateWithWhereUniqueWithoutAuthorInput | BlogPostUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany BlogPostUpdateManyWithWhereWithoutAuthorInput | BlogPostUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany BlogPostScalarWhereInput | BlogPostScalarWhereInput[] No

BlogPostUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create BlogPostCreateWithoutAuthorInput | BlogPostCreateWithoutAuthorInput[] | BlogPostUncheckedCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput[] No
connectOrCreate BlogPostCreateOrConnectWithoutAuthorInput | BlogPostCreateOrConnectWithoutAuthorInput[] No
upsert BlogPostUpsertWithWhereUniqueWithoutAuthorInput | BlogPostUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany BlogPostCreateManyAuthorInputEnvelope No
set BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
disconnect BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
delete BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
connect BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] No
update BlogPostUpdateWithWhereUniqueWithoutAuthorInput | BlogPostUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany BlogPostUpdateManyWithWhereWithoutAuthorInput | BlogPostUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany BlogPostScalarWhereInput | BlogPostScalarWhereInput[] No

BlogPostCreateNestedOneWithoutSpaceTimeCoordinatesInput

Name Type Nullable
create BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput No
connectOrCreate BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput No
connect BlogPostWhereUniqueInput No

BlogPostUncheckedCreateNestedOneWithoutSpaceTimeCoordinatesInput

Name Type Nullable
create BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput No
connectOrCreate BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput No
connect BlogPostWhereUniqueInput No

NullableFloatFieldUpdateOperationsInput

Name Type Nullable
set Float | Null Yes
increment Float No
decrement Float No
multiply Float No
divide Float No



BudgetCreateNestedOneWithoutEntryListInput

Name Type Nullable
create BudgetCreateWithoutEntryListInput | BudgetUncheckedCreateWithoutEntryListInput No
connectOrCreate BudgetCreateOrConnectWithoutEntryListInput No
connect BudgetWhereUniqueInput No

BudgetServiceCreateNestedOneWithoutEntryListInput

Name Type Nullable
create BudgetServiceCreateWithoutEntryListInput | BudgetServiceUncheckedCreateWithoutEntryListInput No
connectOrCreate BudgetServiceCreateOrConnectWithoutEntryListInput No
connect BudgetServiceWhereUniqueInput No





BudgetEntryUpdateManyWithoutServiceNestedInput

Name Type Nullable
create BudgetEntryCreateWithoutServiceInput | BudgetEntryCreateWithoutServiceInput[] | BudgetEntryUncheckedCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput[] No
connectOrCreate BudgetEntryCreateOrConnectWithoutServiceInput | BudgetEntryCreateOrConnectWithoutServiceInput[] No
upsert BudgetEntryUpsertWithWhereUniqueWithoutServiceInput | BudgetEntryUpsertWithWhereUniqueWithoutServiceInput[] No
createMany BudgetEntryCreateManyServiceInputEnvelope No
set BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
disconnect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
delete BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
connect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
update BudgetEntryUpdateWithWhereUniqueWithoutServiceInput | BudgetEntryUpdateWithWhereUniqueWithoutServiceInput[] No
updateMany BudgetEntryUpdateManyWithWhereWithoutServiceInput | BudgetEntryUpdateManyWithWhereWithoutServiceInput[] No
deleteMany BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] No

BudgetEntryUncheckedUpdateManyWithoutServiceNestedInput

Name Type Nullable
create BudgetEntryCreateWithoutServiceInput | BudgetEntryCreateWithoutServiceInput[] | BudgetEntryUncheckedCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput[] No
connectOrCreate BudgetEntryCreateOrConnectWithoutServiceInput | BudgetEntryCreateOrConnectWithoutServiceInput[] No
upsert BudgetEntryUpsertWithWhereUniqueWithoutServiceInput | BudgetEntryUpsertWithWhereUniqueWithoutServiceInput[] No
createMany BudgetEntryCreateManyServiceInputEnvelope No
set BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
disconnect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
delete BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
connect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
update BudgetEntryUpdateWithWhereUniqueWithoutServiceInput | BudgetEntryUpdateWithWhereUniqueWithoutServiceInput[] No
updateMany BudgetEntryUpdateManyWithWhereWithoutServiceInput | BudgetEntryUpdateManyWithWhereWithoutServiceInput[] No
deleteMany BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] No



ReportCreateNestedOneWithoutBudgetInput

Name Type Nullable
create ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput No
connectOrCreate ReportCreateOrConnectWithoutBudgetInput No
connect ReportWhereUniqueInput No



ReportUncheckedCreateNestedOneWithoutBudgetInput

Name Type Nullable
create ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput No
connectOrCreate ReportCreateOrConnectWithoutBudgetInput No
connect ReportWhereUniqueInput No

BudgetBudUserUpdateManyWithoutBudgetNestedInput

Name Type Nullable
create BudgetBudUserCreateWithoutBudgetInput | BudgetBudUserCreateWithoutBudgetInput[] | BudgetBudUserUncheckedCreateWithoutBudgetInput | BudgetBudUserUncheckedCreateWithoutBudgetInput[] No
connectOrCreate BudgetBudUserCreateOrConnectWithoutBudgetInput | BudgetBudUserCreateOrConnectWithoutBudgetInput[] No
upsert BudgetBudUserUpsertWithWhereUniqueWithoutBudgetInput | BudgetBudUserUpsertWithWhereUniqueWithoutBudgetInput[] No
createMany BudgetBudUserCreateManyBudgetInputEnvelope No
set BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
disconnect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
delete BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
connect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
update BudgetBudUserUpdateWithWhereUniqueWithoutBudgetInput | BudgetBudUserUpdateWithWhereUniqueWithoutBudgetInput[] No
updateMany BudgetBudUserUpdateManyWithWhereWithoutBudgetInput | BudgetBudUserUpdateManyWithWhereWithoutBudgetInput[] No
deleteMany BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] No

BudgetEntryUpdateManyWithoutBudgetNestedInput

Name Type Nullable
create BudgetEntryCreateWithoutBudgetInput | BudgetEntryCreateWithoutBudgetInput[] | BudgetEntryUncheckedCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput[] No
connectOrCreate BudgetEntryCreateOrConnectWithoutBudgetInput | BudgetEntryCreateOrConnectWithoutBudgetInput[] No
upsert BudgetEntryUpsertWithWhereUniqueWithoutBudgetInput | BudgetEntryUpsertWithWhereUniqueWithoutBudgetInput[] No
createMany BudgetEntryCreateManyBudgetInputEnvelope No
set BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
disconnect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
delete BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
connect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
update BudgetEntryUpdateWithWhereUniqueWithoutBudgetInput | BudgetEntryUpdateWithWhereUniqueWithoutBudgetInput[] No
updateMany BudgetEntryUpdateManyWithWhereWithoutBudgetInput | BudgetEntryUpdateManyWithWhereWithoutBudgetInput[] No
deleteMany BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] No


BudgetBudUserUncheckedUpdateManyWithoutBudgetNestedInput

Name Type Nullable
create BudgetBudUserCreateWithoutBudgetInput | BudgetBudUserCreateWithoutBudgetInput[] | BudgetBudUserUncheckedCreateWithoutBudgetInput | BudgetBudUserUncheckedCreateWithoutBudgetInput[] No
connectOrCreate BudgetBudUserCreateOrConnectWithoutBudgetInput | BudgetBudUserCreateOrConnectWithoutBudgetInput[] No
upsert BudgetBudUserUpsertWithWhereUniqueWithoutBudgetInput | BudgetBudUserUpsertWithWhereUniqueWithoutBudgetInput[] No
createMany BudgetBudUserCreateManyBudgetInputEnvelope No
set BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
disconnect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
delete BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
connect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
update BudgetBudUserUpdateWithWhereUniqueWithoutBudgetInput | BudgetBudUserUpdateWithWhereUniqueWithoutBudgetInput[] No
updateMany BudgetBudUserUpdateManyWithWhereWithoutBudgetInput | BudgetBudUserUpdateManyWithWhereWithoutBudgetInput[] No
deleteMany BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] No

BudgetEntryUncheckedUpdateManyWithoutBudgetNestedInput

Name Type Nullable
create BudgetEntryCreateWithoutBudgetInput | BudgetEntryCreateWithoutBudgetInput[] | BudgetEntryUncheckedCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput[] No
connectOrCreate BudgetEntryCreateOrConnectWithoutBudgetInput | BudgetEntryCreateOrConnectWithoutBudgetInput[] No
upsert BudgetEntryUpsertWithWhereUniqueWithoutBudgetInput | BudgetEntryUpsertWithWhereUniqueWithoutBudgetInput[] No
createMany BudgetEntryCreateManyBudgetInputEnvelope No
set BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
disconnect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
delete BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
connect BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] No
update BudgetEntryUpdateWithWhereUniqueWithoutBudgetInput | BudgetEntryUpdateWithWhereUniqueWithoutBudgetInput[] No
updateMany BudgetEntryUpdateManyWithWhereWithoutBudgetInput | BudgetEntryUpdateManyWithWhereWithoutBudgetInput[] No
deleteMany BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] No


BudgetCreateNestedOneWithoutReportInput

Name Type Nullable
create BudgetCreateWithoutReportInput | BudgetUncheckedCreateWithoutReportInput No
connectOrCreate BudgetCreateOrConnectWithoutReportInput No
connect BudgetWhereUniqueInput No






BudEventUpdateManyWithoutBudUserNestedInput

Name Type Nullable
create BudEventCreateWithoutBudUserInput | BudEventCreateWithoutBudUserInput[] | BudEventUncheckedCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput[] No
connectOrCreate BudEventCreateOrConnectWithoutBudUserInput | BudEventCreateOrConnectWithoutBudUserInput[] No
upsert BudEventUpsertWithWhereUniqueWithoutBudUserInput | BudEventUpsertWithWhereUniqueWithoutBudUserInput[] No
createMany BudEventCreateManyBudUserInputEnvelope No
set BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
disconnect BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
delete BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
connect BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
update BudEventUpdateWithWhereUniqueWithoutBudUserInput | BudEventUpdateWithWhereUniqueWithoutBudUserInput[] No
updateMany BudEventUpdateManyWithWhereWithoutBudUserInput | BudEventUpdateManyWithWhereWithoutBudUserInput[] No
deleteMany BudEventScalarWhereInput | BudEventScalarWhereInput[] No

BudgetBudUserUpdateManyWithoutUserNestedInput

Name Type Nullable
create BudgetBudUserCreateWithoutUserInput | BudgetBudUserCreateWithoutUserInput[] | BudgetBudUserUncheckedCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput[] No
connectOrCreate BudgetBudUserCreateOrConnectWithoutUserInput | BudgetBudUserCreateOrConnectWithoutUserInput[] No
upsert BudgetBudUserUpsertWithWhereUniqueWithoutUserInput | BudgetBudUserUpsertWithWhereUniqueWithoutUserInput[] No
createMany BudgetBudUserCreateManyUserInputEnvelope No
set BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
disconnect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
delete BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
connect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
update BudgetBudUserUpdateWithWhereUniqueWithoutUserInput | BudgetBudUserUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BudgetBudUserUpdateManyWithWhereWithoutUserInput | BudgetBudUserUpdateManyWithWhereWithoutUserInput[] No
deleteMany BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] No

BudEventUncheckedUpdateManyWithoutBudUserNestedInput

Name Type Nullable
create BudEventCreateWithoutBudUserInput | BudEventCreateWithoutBudUserInput[] | BudEventUncheckedCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput[] No
connectOrCreate BudEventCreateOrConnectWithoutBudUserInput | BudEventCreateOrConnectWithoutBudUserInput[] No
upsert BudEventUpsertWithWhereUniqueWithoutBudUserInput | BudEventUpsertWithWhereUniqueWithoutBudUserInput[] No
createMany BudEventCreateManyBudUserInputEnvelope No
set BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
disconnect BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
delete BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
connect BudEventWhereUniqueInput | BudEventWhereUniqueInput[] No
update BudEventUpdateWithWhereUniqueWithoutBudUserInput | BudEventUpdateWithWhereUniqueWithoutBudUserInput[] No
updateMany BudEventUpdateManyWithWhereWithoutBudUserInput | BudEventUpdateManyWithWhereWithoutBudUserInput[] No
deleteMany BudEventScalarWhereInput | BudEventScalarWhereInput[] No

BudgetBudUserUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create BudgetBudUserCreateWithoutUserInput | BudgetBudUserCreateWithoutUserInput[] | BudgetBudUserUncheckedCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput[] No
connectOrCreate BudgetBudUserCreateOrConnectWithoutUserInput | BudgetBudUserCreateOrConnectWithoutUserInput[] No
upsert BudgetBudUserUpsertWithWhereUniqueWithoutUserInput | BudgetBudUserUpsertWithWhereUniqueWithoutUserInput[] No
createMany BudgetBudUserCreateManyUserInputEnvelope No
set BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
disconnect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
delete BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
connect BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] No
update BudgetBudUserUpdateWithWhereUniqueWithoutUserInput | BudgetBudUserUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BudgetBudUserUpdateManyWithWhereWithoutUserInput | BudgetBudUserUpdateManyWithWhereWithoutUserInput[] No
deleteMany BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] No

BudgetCreateNestedOneWithoutUserListInput

Name Type Nullable
create BudgetCreateWithoutUserListInput | BudgetUncheckedCreateWithoutUserListInput No
connectOrCreate BudgetCreateOrConnectWithoutUserListInput No
connect BudgetWhereUniqueInput No

BudUserCreateNestedOneWithoutBudgetListInput

Name Type Nullable
create BudUserCreateWithoutBudgetListInput | BudUserUncheckedCreateWithoutBudgetListInput No
connectOrCreate BudUserCreateOrConnectWithoutBudgetListInput No
connect BudUserWhereUniqueInput No



BudEventCreatecategoryListInput

Name Type Nullable
set String No

BudUserCreateNestedOneWithoutEventListInput

Name Type Nullable
create BudUserCreateWithoutEventListInput | BudUserUncheckedCreateWithoutEventListInput No
connectOrCreate BudUserCreateOrConnectWithoutEventListInput No
connect BudUserWhereUniqueInput No

BudEventUpdatecategoryListInput

Name Type Nullable
set String No
push String | String No


NestedUuidFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
not String | NestedUuidFilter No

NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
not String | NestedStringFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
not String | NestedStringNullableFilter | Null Yes

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

NestedEnumCountryFilter

Name Type Nullable
equals Country | EnumCountryFieldRefInput No
in Country[] | ListEnumCountryFieldRefInput No
notIn Country[] | ListEnumCountryFieldRefInput No
not Country | NestedEnumCountryFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes


NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedUuidNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
not String | NestedUuidNullableFilter | Null Yes

NestedUuidWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
not String | NestedUuidWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes


NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No


NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedUuidNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
search String No
not String | NestedUuidNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No



NestedEnumTimeOfDayNullableFilter

Name Type Nullable
equals TimeOfDay | EnumTimeOfDayFieldRefInput | Null Yes
in TimeOfDay[] | ListEnumTimeOfDayFieldRefInput | Null Yes
notIn TimeOfDay[] | ListEnumTimeOfDayFieldRefInput | Null Yes
not TimeOfDay | NestedEnumTimeOfDayNullableFilter | Null Yes

NestedBoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

NestedEnumTimeOfDayNullableWithAggregatesFilter

Name Type Nullable
equals TimeOfDay | EnumTimeOfDayFieldRefInput | Null Yes
in TimeOfDay[] | ListEnumTimeOfDayFieldRefInput | Null Yes
notIn TimeOfDay[] | ListEnumTimeOfDayFieldRefInput | Null Yes
not TimeOfDay | NestedEnumTimeOfDayNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumTimeOfDayNullableFilter No
_max NestedEnumTimeOfDayNullableFilter No

NestedBoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

NestedFloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

NestedEnumGenderFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput No
in Gender[] | ListEnumGenderFieldRefInput No
notIn Gender[] | ListEnumGenderFieldRefInput No
not Gender | NestedEnumGenderFilter No

NestedEnumGenderWithAggregatesFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput No
in Gender[] | ListEnumGenderFieldRefInput No
notIn Gender[] | ListEnumGenderFieldRefInput No
not Gender | NestedEnumGenderWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumGenderFilter No
_max NestedEnumGenderFilter No

NestedJsonFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

NestedFloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No

PrincipalCreateWithoutCreatedPrincipalsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatedPrincipalsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatedPrincipalsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatedPrincipalsInput | PrincipalUncheckedCreateWithoutCreatedPrincipalsInput No

PrincipalCreateWithoutUpdatedPrincipalsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdatedPrincipalsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdatedPrincipalsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdatedPrincipalsInput | PrincipalUncheckedCreateWithoutUpdatedPrincipalsInput No

PrincipalCreateWithoutCreatorInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatorInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatorInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatorInput | PrincipalUncheckedCreateWithoutCreatorInput No

PrincipalCreateManyCreatorInputEnvelope

Name Type Nullable
data PrincipalCreateManyCreatorInput | PrincipalCreateManyCreatorInput[] No
skipDuplicates Boolean No

PrincipalCreateWithoutUpdaterInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdaterInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdaterInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdaterInput | PrincipalUncheckedCreateWithoutUpdaterInput No

PrincipalCreateManyUpdaterInputEnvelope

Name Type Nullable
data PrincipalCreateManyUpdaterInput | PrincipalCreateManyUpdaterInput[] No
skipDuplicates Boolean No

PaymentCreateWithoutCreatorInput

Name Type Nullable
id String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
payer PatientCreateNestedOneWithoutPaymentListInput No
receiver PrincipalCreateNestedOneWithoutReceivedPaymentListInput No
updater PrincipalCreateNestedOneWithoutUpdatedPaymentsInput No

PaymentUncheckedCreateWithoutCreatorInput

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

PaymentCreateOrConnectWithoutCreatorInput

Name Type Nullable
where PaymentWhereUniqueInput No
create PaymentCreateWithoutCreatorInput | PaymentUncheckedCreateWithoutCreatorInput No

PaymentCreateManyCreatorInputEnvelope

Name Type Nullable
data PaymentCreateManyCreatorInput | PaymentCreateManyCreatorInput[] No
skipDuplicates Boolean No

PaymentCreateWithoutUpdaterInput

Name Type Nullable
id String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
payer PatientCreateNestedOneWithoutPaymentListInput No
receiver PrincipalCreateNestedOneWithoutReceivedPaymentListInput No
creator PrincipalCreateNestedOneWithoutCreatedPaymentsInput No

PaymentUncheckedCreateWithoutUpdaterInput

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

PaymentCreateOrConnectWithoutUpdaterInput

Name Type Nullable
where PaymentWhereUniqueInput No
create PaymentCreateWithoutUpdaterInput | PaymentUncheckedCreateWithoutUpdaterInput No

PaymentCreateManyUpdaterInputEnvelope

Name Type Nullable
data PaymentCreateManyUpdaterInput | PaymentCreateManyUpdaterInput[] No
skipDuplicates Boolean No

AppointmentCreateWithoutCreatorInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
appointmentType AppointmentTypeCreateNestedOneWithoutAppointmentListInput No
location LocationCreateNestedOneWithoutAppointmentListInput No
patient PatientCreateNestedOneWithoutAppointmentListInput No
provider ProviderCreateNestedOneWithoutAppointmentListInput No
updater PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput No

AppointmentUncheckedCreateWithoutCreatorInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

AppointmentCreateOrConnectWithoutCreatorInput

Name Type Nullable
where AppointmentWhereUniqueInput No
create AppointmentCreateWithoutCreatorInput | AppointmentUncheckedCreateWithoutCreatorInput No

AppointmentCreateManyCreatorInputEnvelope

Name Type Nullable
data AppointmentCreateManyCreatorInput | AppointmentCreateManyCreatorInput[] No
skipDuplicates Boolean No

AppointmentCreateWithoutUpdaterInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
appointmentType AppointmentTypeCreateNestedOneWithoutAppointmentListInput No
location LocationCreateNestedOneWithoutAppointmentListInput No
patient PatientCreateNestedOneWithoutAppointmentListInput No
provider ProviderCreateNestedOneWithoutAppointmentListInput No
creator PrincipalCreateNestedOneWithoutCreatedAppointmentsInput No

AppointmentUncheckedCreateWithoutUpdaterInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

AppointmentCreateOrConnectWithoutUpdaterInput

Name Type Nullable
where AppointmentWhereUniqueInput No
create AppointmentCreateWithoutUpdaterInput | AppointmentUncheckedCreateWithoutUpdaterInput No

AppointmentCreateManyUpdaterInputEnvelope

Name Type Nullable
data AppointmentCreateManyUpdaterInput | AppointmentCreateManyUpdaterInput[] No
skipDuplicates Boolean No

EquipmentCreateWithoutCreatorInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
updater PrincipalCreateNestedOneWithoutUpdatedEquipmentsInput No

EquipmentUncheckedCreateWithoutCreatorInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

EquipmentCreateOrConnectWithoutCreatorInput

Name Type Nullable
where EquipmentWhereUniqueInput No
create EquipmentCreateWithoutCreatorInput | EquipmentUncheckedCreateWithoutCreatorInput No

EquipmentCreateManyCreatorInputEnvelope

Name Type Nullable
data EquipmentCreateManyCreatorInput | EquipmentCreateManyCreatorInput[] No
skipDuplicates Boolean No

EquipmentCreateWithoutUpdaterInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedEquipmentsInput No

EquipmentUncheckedCreateWithoutUpdaterInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

EquipmentCreateOrConnectWithoutUpdaterInput

Name Type Nullable
where EquipmentWhereUniqueInput No
create EquipmentCreateWithoutUpdaterInput | EquipmentUncheckedCreateWithoutUpdaterInput No

EquipmentCreateManyUpdaterInputEnvelope

Name Type Nullable
data EquipmentCreateManyUpdaterInput | EquipmentCreateManyUpdaterInput[] No
skipDuplicates Boolean No

PatientCreateWithoutCreatorInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
paymentList PaymentCreateNestedManyWithoutPayerInput No
updater PrincipalCreateNestedOneWithoutUpdatedPatientsInput No
appointmentList AppointmentCreateNestedManyWithoutPatientInput No
encounterList EncounterCreateNestedManyWithoutPatientInput No

PatientUncheckedCreateWithoutCreatorInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes
paymentList PaymentUncheckedCreateNestedManyWithoutPayerInput No
appointmentList AppointmentUncheckedCreateNestedManyWithoutPatientInput No
encounterList EncounterUncheckedCreateNestedManyWithoutPatientInput No

PatientCreateOrConnectWithoutCreatorInput

Name Type Nullable
where PatientWhereUniqueInput No
create PatientCreateWithoutCreatorInput | PatientUncheckedCreateWithoutCreatorInput No

PatientCreateManyCreatorInputEnvelope

Name Type Nullable
data PatientCreateManyCreatorInput | PatientCreateManyCreatorInput[] No
skipDuplicates Boolean No

PatientCreateWithoutUpdaterInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
paymentList PaymentCreateNestedManyWithoutPayerInput No
creator PrincipalCreateNestedOneWithoutCreatedPatientsInput No
appointmentList AppointmentCreateNestedManyWithoutPatientInput No
encounterList EncounterCreateNestedManyWithoutPatientInput No

PatientUncheckedCreateWithoutUpdaterInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
paymentList PaymentUncheckedCreateNestedManyWithoutPayerInput No
appointmentList AppointmentUncheckedCreateNestedManyWithoutPatientInput No
encounterList EncounterUncheckedCreateNestedManyWithoutPatientInput No

PatientCreateOrConnectWithoutUpdaterInput

Name Type Nullable
where PatientWhereUniqueInput No
create PatientCreateWithoutUpdaterInput | PatientUncheckedCreateWithoutUpdaterInput No

PatientCreateManyUpdaterInputEnvelope

Name Type Nullable
data PatientCreateManyUpdaterInput | PatientCreateManyUpdaterInput[] No
skipDuplicates Boolean No

ServiceCreateWithoutCreatorInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
updater PrincipalCreateNestedOneWithoutUpdatedServicesInput No

ServiceUncheckedCreateWithoutCreatorInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

ServiceCreateOrConnectWithoutCreatorInput

Name Type Nullable
where ServiceWhereUniqueInput No
create ServiceCreateWithoutCreatorInput | ServiceUncheckedCreateWithoutCreatorInput No

ServiceCreateManyCreatorInputEnvelope

Name Type Nullable
data ServiceCreateManyCreatorInput | ServiceCreateManyCreatorInput[] No
skipDuplicates Boolean No

ServiceCreateWithoutUpdaterInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedServicesInput No

ServiceUncheckedCreateWithoutUpdaterInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

ServiceCreateOrConnectWithoutUpdaterInput

Name Type Nullable
where ServiceWhereUniqueInput No
create ServiceCreateWithoutUpdaterInput | ServiceUncheckedCreateWithoutUpdaterInput No

ServiceCreateManyUpdaterInputEnvelope

Name Type Nullable
data ServiceCreateManyUpdaterInput | ServiceCreateManyUpdaterInput[] No
skipDuplicates Boolean No

AccountCreateWithoutUserInput

Name Type Nullable
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
createdAt DateTime No
updatedAt DateTime No

AccountUncheckedCreateWithoutUserInput

Name Type Nullable
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
createdAt DateTime No
updatedAt DateTime No

AccountCreateOrConnectWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
create AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput No

AccountCreateManyUserInputEnvelope

Name Type Nullable
data AccountCreateManyUserInput | AccountCreateManyUserInput[] No
skipDuplicates Boolean No

AuthenticatorCreateWithoutUserInput

Name Type Nullable
credentialID String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String | Null Yes

AuthenticatorUncheckedCreateWithoutUserInput

Name Type Nullable
credentialID String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String | Null Yes

AuthenticatorCreateOrConnectWithoutUserInput

Name Type Nullable
where AuthenticatorWhereUniqueInput No
create AuthenticatorCreateWithoutUserInput | AuthenticatorUncheckedCreateWithoutUserInput No

AuthenticatorCreateManyUserInputEnvelope

Name Type Nullable
data AuthenticatorCreateManyUserInput | AuthenticatorCreateManyUserInput[] No
skipDuplicates Boolean No

PaymentCreateWithoutReceiverInput

Name Type Nullable
id String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
payer PatientCreateNestedOneWithoutPaymentListInput No
creator PrincipalCreateNestedOneWithoutCreatedPaymentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPaymentsInput No

PaymentUncheckedCreateWithoutReceiverInput

Name Type Nullable
id String No
payerId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

PaymentCreateOrConnectWithoutReceiverInput

Name Type Nullable
where PaymentWhereUniqueInput No
create PaymentCreateWithoutReceiverInput | PaymentUncheckedCreateWithoutReceiverInput No

PaymentCreateManyReceiverInputEnvelope

Name Type Nullable
data PaymentCreateManyReceiverInput | PaymentCreateManyReceiverInput[] No
skipDuplicates Boolean No

SessionCreateWithoutUserInput

Name Type Nullable
sessionToken String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

SessionUncheckedCreateWithoutUserInput

Name Type Nullable
sessionToken String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

SessionCreateOrConnectWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
create SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput No

SessionCreateManyUserInputEnvelope

Name Type Nullable
data SessionCreateManyUserInput | SessionCreateManyUserInput[] No
skipDuplicates Boolean No


PrincipalUpdateToOneWithWhereWithoutCreatedPrincipalsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutCreatedPrincipalsInput | PrincipalUncheckedUpdateWithoutCreatedPrincipalsInput No

PrincipalUpdateWithoutCreatedPrincipalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatedPrincipalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutUpdatedPrincipalsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutUpdatedPrincipalsInput | PrincipalUncheckedUpdateWithoutUpdatedPrincipalsInput No

PrincipalUpdateWithoutUpdatedPrincipalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdatedPrincipalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateWithWhereUniqueWithoutCreatorInput

Name Type Nullable
where PrincipalWhereUniqueInput No
data PrincipalUpdateWithoutCreatorInput | PrincipalUncheckedUpdateWithoutCreatorInput No

PrincipalUpdateManyWithWhereWithoutCreatorInput

Name Type Nullable
where PrincipalScalarWhereInput No
data PrincipalUpdateManyMutationInput | PrincipalUncheckedUpdateManyWithoutCreatorInput No

PrincipalScalarWhereInput

Name Type Nullable
AND PrincipalScalarWhereInput | PrincipalScalarWhereInput[] No
OR PrincipalScalarWhereInput[] No
NOT PrincipalScalarWhereInput | PrincipalScalarWhereInput[] No
id UuidFilter | String No
username StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringFilter | String No
password StringNullableFilter | String | Null Yes
phoneCode IntNullableFilter | Int | Null Yes
phoneNumber StringNullableFilter | String | Null Yes
streetName StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
areaCode StringNullableFilter | String | Null Yes
country EnumCountryFilter | Country No
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
payerType EnumDiscountTypeFilter | DiscountType No
image StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes


PrincipalUpdateWithWhereUniqueWithoutUpdaterInput

Name Type Nullable
where PrincipalWhereUniqueInput No
data PrincipalUpdateWithoutUpdaterInput | PrincipalUncheckedUpdateWithoutUpdaterInput No

PrincipalUpdateManyWithWhereWithoutUpdaterInput

Name Type Nullable
where PrincipalScalarWhereInput No
data PrincipalUpdateManyMutationInput | PrincipalUncheckedUpdateManyWithoutUpdaterInput No


PaymentUpdateWithWhereUniqueWithoutCreatorInput

Name Type Nullable
where PaymentWhereUniqueInput No
data PaymentUpdateWithoutCreatorInput | PaymentUncheckedUpdateWithoutCreatorInput No

PaymentUpdateManyWithWhereWithoutCreatorInput

Name Type Nullable
where PaymentScalarWhereInput No
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutCreatorInput No

PaymentScalarWhereInput

Name Type Nullable
AND PaymentScalarWhereInput | PaymentScalarWhereInput[] No
OR PaymentScalarWhereInput[] No
NOT PaymentScalarWhereInput | PaymentScalarWhereInput[] No
id UuidFilter | String No
payerId UuidFilter | String No
receiverId UuidFilter | String No
paymentMethod EnumPaymentMethodFilter | PaymentMethod No
totalPayableAmount IntFilter | Int No
discountApplied IntFilter | Int No
paidAmount IntFilter | Int No
reasonForVisit StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes


PaymentUpdateWithWhereUniqueWithoutUpdaterInput

Name Type Nullable
where PaymentWhereUniqueInput No
data PaymentUpdateWithoutUpdaterInput | PaymentUncheckedUpdateWithoutUpdaterInput No

PaymentUpdateManyWithWhereWithoutUpdaterInput

Name Type Nullable
where PaymentScalarWhereInput No
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutUpdaterInput No


AppointmentUpdateWithWhereUniqueWithoutCreatorInput

Name Type Nullable
where AppointmentWhereUniqueInput No
data AppointmentUpdateWithoutCreatorInput | AppointmentUncheckedUpdateWithoutCreatorInput No

AppointmentUpdateManyWithWhereWithoutCreatorInput

Name Type Nullable
where AppointmentScalarWhereInput No
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutCreatorInput No

AppointmentScalarWhereInput

Name Type Nullable
AND AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No
OR AppointmentScalarWhereInput[] No
NOT AppointmentScalarWhereInput | AppointmentScalarWhereInput[] No
id UuidFilter | String No
uuid UuidFilter | String No
date DateTimeFilter | DateTime No
startTime EnumTimeOfDayNullableFilter | TimeOfDay | Null Yes
endTime EnumTimeOfDayNullableFilter | TimeOfDay | Null Yes
voided BoolNullableFilter | Boolean | Null Yes
voidedBy StringNullableFilter | String | Null Yes
dateVoided DateTimeNullableFilter | DateTime | Null Yes
voidReason StringNullableFilter | String | Null Yes
appointmentTypeId UuidNullableFilter | String | Null Yes
patientId UuidFilter | String No
locationId UuidNullableFilter | String | Null Yes
providerId UuidNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes


AppointmentUpdateWithWhereUniqueWithoutUpdaterInput

Name Type Nullable
where AppointmentWhereUniqueInput No
data AppointmentUpdateWithoutUpdaterInput | AppointmentUncheckedUpdateWithoutUpdaterInput No

AppointmentUpdateManyWithWhereWithoutUpdaterInput

Name Type Nullable
where AppointmentScalarWhereInput No
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutUpdaterInput No


EquipmentUpdateWithWhereUniqueWithoutCreatorInput

Name Type Nullable
where EquipmentWhereUniqueInput No
data EquipmentUpdateWithoutCreatorInput | EquipmentUncheckedUpdateWithoutCreatorInput No

EquipmentUpdateManyWithWhereWithoutCreatorInput

Name Type Nullable
where EquipmentScalarWhereInput No
data EquipmentUpdateManyMutationInput | EquipmentUncheckedUpdateManyWithoutCreatorInput No

EquipmentScalarWhereInput

Name Type Nullable
AND EquipmentScalarWhereInput | EquipmentScalarWhereInput[] No
OR EquipmentScalarWhereInput[] No
NOT EquipmentScalarWhereInput | EquipmentScalarWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
price IntFilter | Int No
count IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes


EquipmentUpdateWithWhereUniqueWithoutUpdaterInput

Name Type Nullable
where EquipmentWhereUniqueInput No
data EquipmentUpdateWithoutUpdaterInput | EquipmentUncheckedUpdateWithoutUpdaterInput No

EquipmentUpdateManyWithWhereWithoutUpdaterInput

Name Type Nullable
where EquipmentScalarWhereInput No
data EquipmentUpdateManyMutationInput | EquipmentUncheckedUpdateManyWithoutUpdaterInput No


PatientUpdateWithWhereUniqueWithoutCreatorInput

Name Type Nullable
where PatientWhereUniqueInput No
data PatientUpdateWithoutCreatorInput | PatientUncheckedUpdateWithoutCreatorInput No

PatientUpdateManyWithWhereWithoutCreatorInput

Name Type Nullable
where PatientScalarWhereInput No
data PatientUpdateManyMutationInput | PatientUncheckedUpdateManyWithoutCreatorInput No

PatientScalarWhereInput

Name Type Nullable
AND PatientScalarWhereInput | PatientScalarWhereInput[] No
OR PatientScalarWhereInput[] No
NOT PatientScalarWhereInput | PatientScalarWhereInput[] No
id UuidFilter | String No
uuid UuidFilter | String No
givenName StringFilter | String No
middleName StringFilter | String No
familyName StringFilter | String No
gender EnumGenderFilter | Gender No
birthdate DateTimeNullableFilter | DateTime | Null Yes
phoneCode IntNullableFilter | Int | Null Yes
phoneNumber StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
streetName StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
areaCode StringNullableFilter | String | Null Yes
country EnumCountryFilter | Country No
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes


PatientUpdateWithWhereUniqueWithoutUpdaterInput

Name Type Nullable
where PatientWhereUniqueInput No
data PatientUpdateWithoutUpdaterInput | PatientUncheckedUpdateWithoutUpdaterInput No

PatientUpdateManyWithWhereWithoutUpdaterInput

Name Type Nullable
where PatientScalarWhereInput No
data PatientUpdateManyMutationInput | PatientUncheckedUpdateManyWithoutUpdaterInput No


ServiceUpdateWithWhereUniqueWithoutCreatorInput

Name Type Nullable
where ServiceWhereUniqueInput No
data ServiceUpdateWithoutCreatorInput | ServiceUncheckedUpdateWithoutCreatorInput No

ServiceUpdateManyWithWhereWithoutCreatorInput

Name Type Nullable
where ServiceScalarWhereInput No
data ServiceUpdateManyMutationInput | ServiceUncheckedUpdateManyWithoutCreatorInput No

ServiceScalarWhereInput

Name Type Nullable
AND ServiceScalarWhereInput | ServiceScalarWhereInput[] No
OR ServiceScalarWhereInput[] No
NOT ServiceScalarWhereInput | ServiceScalarWhereInput[] No
id UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
price IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
createdBy UuidNullableFilter | String | Null Yes
updatedBy UuidNullableFilter | String | Null Yes


ServiceUpdateWithWhereUniqueWithoutUpdaterInput

Name Type Nullable
where ServiceWhereUniqueInput No
data ServiceUpdateWithoutUpdaterInput | ServiceUncheckedUpdateWithoutUpdaterInput No

ServiceUpdateManyWithWhereWithoutUpdaterInput

Name Type Nullable
where ServiceScalarWhereInput No
data ServiceUpdateManyMutationInput | ServiceUncheckedUpdateManyWithoutUpdaterInput No


AccountUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
data AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput No

AccountUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AccountScalarWhereInput No
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutUserInput No

AccountScalarWhereInput

Name Type Nullable
AND AccountScalarWhereInput | AccountScalarWhereInput[] No
OR AccountScalarWhereInput[] No
NOT AccountScalarWhereInput | AccountScalarWhereInput[] No
userId UuidFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No


AuthenticatorUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AuthenticatorWhereUniqueInput No
data AuthenticatorUpdateWithoutUserInput | AuthenticatorUncheckedUpdateWithoutUserInput No

AuthenticatorUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AuthenticatorScalarWhereInput No
data AuthenticatorUpdateManyMutationInput | AuthenticatorUncheckedUpdateManyWithoutUserInput No

AuthenticatorScalarWhereInput

Name Type Nullable
AND AuthenticatorScalarWhereInput | AuthenticatorScalarWhereInput[] No
OR AuthenticatorScalarWhereInput[] No
NOT AuthenticatorScalarWhereInput | AuthenticatorScalarWhereInput[] No
credentialID StringFilter | String No
userId UuidFilter | String No
providerAccountId StringFilter | String No
credentialPublicKey StringFilter | String No
counter IntFilter | Int No
credentialDeviceType StringFilter | String No
credentialBackedUp BoolFilter | Boolean No
transports StringNullableFilter | String | Null Yes


PaymentUpdateWithWhereUniqueWithoutReceiverInput

Name Type Nullable
where PaymentWhereUniqueInput No
data PaymentUpdateWithoutReceiverInput | PaymentUncheckedUpdateWithoutReceiverInput No

PaymentUpdateManyWithWhereWithoutReceiverInput

Name Type Nullable
where PaymentScalarWhereInput No
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutReceiverInput No


SessionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
data SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput No

SessionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SessionScalarWhereInput No
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutUserInput No

SessionScalarWhereInput

Name Type Nullable
AND SessionScalarWhereInput | SessionScalarWhereInput[] No
OR SessionScalarWhereInput[] No
NOT SessionScalarWhereInput | SessionScalarWhereInput[] No
sessionToken StringFilter | String No
userId UuidFilter | String No
expiresAt DateTimeFilter | DateTime No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No

PrincipalCreateWithoutAccountsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutAccountsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutAccountsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutAccountsInput | PrincipalUncheckedCreateWithoutAccountsInput No


PrincipalUpdateToOneWithWhereWithoutAccountsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutAccountsInput | PrincipalUncheckedUpdateWithoutAccountsInput No

PrincipalUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

PrincipalCreateWithoutSessionsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No

PrincipalUncheckedCreateWithoutSessionsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No

PrincipalCreateOrConnectWithoutSessionsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutSessionsInput | PrincipalUncheckedCreateWithoutSessionsInput No


PrincipalUpdateToOneWithWhereWithoutSessionsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutSessionsInput | PrincipalUncheckedUpdateWithoutSessionsInput No

PrincipalUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No

PrincipalUncheckedUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No

PrincipalCreateWithoutAuthenticatorInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutAuthenticatorInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutAuthenticatorInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutAuthenticatorInput | PrincipalUncheckedCreateWithoutAuthenticatorInput No


PrincipalUpdateToOneWithWhereWithoutAuthenticatorInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutAuthenticatorInput | PrincipalUncheckedUpdateWithoutAuthenticatorInput No

PrincipalUpdateWithoutAuthenticatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutAuthenticatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

PatientCreateWithoutPaymentListInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPatientsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPatientsInput No
appointmentList AppointmentCreateNestedManyWithoutPatientInput No
encounterList EncounterCreateNestedManyWithoutPatientInput No

PatientUncheckedCreateWithoutPaymentListInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
appointmentList AppointmentUncheckedCreateNestedManyWithoutPatientInput No
encounterList EncounterUncheckedCreateNestedManyWithoutPatientInput No

PatientCreateOrConnectWithoutPaymentListInput

Name Type Nullable
where PatientWhereUniqueInput No
create PatientCreateWithoutPaymentListInput | PatientUncheckedCreateWithoutPaymentListInput No

PrincipalCreateWithoutReceivedPaymentListInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutReceivedPaymentListInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutReceivedPaymentListInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutReceivedPaymentListInput | PrincipalUncheckedCreateWithoutReceivedPaymentListInput No

PrincipalCreateWithoutCreatedPaymentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatedPaymentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatedPaymentsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatedPaymentsInput | PrincipalUncheckedCreateWithoutCreatedPaymentsInput No

PrincipalCreateWithoutUpdatedPaymentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdatedPaymentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdatedPaymentsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdatedPaymentsInput | PrincipalUncheckedCreateWithoutUpdatedPaymentsInput No


PatientUpdateToOneWithWhereWithoutPaymentListInput

Name Type Nullable
where PatientWhereInput No
data PatientUpdateWithoutPaymentListInput | PatientUncheckedUpdateWithoutPaymentListInput No

PatientUpdateWithoutPaymentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPatientsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPatientsNestedInput No
appointmentList AppointmentUpdateManyWithoutPatientNestedInput No
encounterList EncounterUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateWithoutPaymentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentList AppointmentUncheckedUpdateManyWithoutPatientNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutPatientNestedInput No


PrincipalUpdateToOneWithWhereWithoutReceivedPaymentListInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutReceivedPaymentListInput | PrincipalUncheckedUpdateWithoutReceivedPaymentListInput No

PrincipalUpdateWithoutReceivedPaymentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutReceivedPaymentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutCreatedPaymentsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutCreatedPaymentsInput | PrincipalUncheckedUpdateWithoutCreatedPaymentsInput No

PrincipalUpdateWithoutCreatedPaymentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatedPaymentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutUpdatedPaymentsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutUpdatedPaymentsInput | PrincipalUncheckedUpdateWithoutUpdatedPaymentsInput No

PrincipalUpdateWithoutUpdatedPaymentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdatedPaymentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

AppointmentTypeCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

AppointmentTypeUncheckedCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

AppointmentTypeCreateOrConnectWithoutAppointmentListInput

Name Type Nullable
where AppointmentTypeWhereUniqueInput No
create AppointmentTypeCreateWithoutAppointmentListInput | AppointmentTypeUncheckedCreateWithoutAppointmentListInput No

LocationCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutLocationInput No

LocationUncheckedCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterUncheckedCreateNestedManyWithoutLocationInput No

LocationCreateOrConnectWithoutAppointmentListInput

Name Type Nullable
where LocationWhereUniqueInput No
create LocationCreateWithoutAppointmentListInput | LocationUncheckedCreateWithoutAppointmentListInput No

PatientCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
paymentList PaymentCreateNestedManyWithoutPayerInput No
creator PrincipalCreateNestedOneWithoutCreatedPatientsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPatientsInput No
encounterList EncounterCreateNestedManyWithoutPatientInput No

PatientUncheckedCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
paymentList PaymentUncheckedCreateNestedManyWithoutPayerInput No
encounterList EncounterUncheckedCreateNestedManyWithoutPatientInput No

PatientCreateOrConnectWithoutAppointmentListInput

Name Type Nullable
where PatientWhereUniqueInput No
create PatientCreateWithoutAppointmentListInput | PatientUncheckedCreateWithoutAppointmentListInput No

ProviderCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutProviderInput No

ProviderUncheckedCreateWithoutAppointmentListInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterUncheckedCreateNestedManyWithoutProviderInput No

ProviderCreateOrConnectWithoutAppointmentListInput

Name Type Nullable
where ProviderWhereUniqueInput No
create ProviderCreateWithoutAppointmentListInput | ProviderUncheckedCreateWithoutAppointmentListInput No

PrincipalCreateWithoutCreatedAppointmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatedAppointmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatedAppointmentsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatedAppointmentsInput | PrincipalUncheckedCreateWithoutCreatedAppointmentsInput No

PrincipalCreateWithoutUpdatedAppointmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdatedAppointmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdatedAppointmentsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdatedAppointmentsInput | PrincipalUncheckedCreateWithoutUpdatedAppointmentsInput No


AppointmentTypeUpdateToOneWithWhereWithoutAppointmentListInput

Name Type Nullable
where AppointmentTypeWhereInput No
data AppointmentTypeUpdateWithoutAppointmentListInput | AppointmentTypeUncheckedUpdateWithoutAppointmentListInput No

AppointmentTypeUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
duration Int | IntFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

AppointmentTypeUncheckedUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
duration Int | IntFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


LocationUpdateToOneWithWhereWithoutAppointmentListInput

Name Type Nullable
where LocationWhereInput No
data LocationUpdateWithoutAppointmentListInput | LocationUncheckedUpdateWithoutAppointmentListInput No

LocationUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutLocationNestedInput No

LocationUncheckedUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUncheckedUpdateManyWithoutLocationNestedInput No


PatientUpdateToOneWithWhereWithoutAppointmentListInput

Name Type Nullable
where PatientWhereInput No
data PatientUpdateWithoutAppointmentListInput | PatientUncheckedUpdateWithoutAppointmentListInput No

PatientUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
paymentList PaymentUpdateManyWithoutPayerNestedInput No
creator PrincipalUpdateOneWithoutCreatedPatientsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPatientsNestedInput No
encounterList EncounterUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentList PaymentUncheckedUpdateManyWithoutPayerNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutPatientNestedInput No


ProviderUpdateToOneWithWhereWithoutAppointmentListInput

Name Type Nullable
where ProviderWhereInput No
data ProviderUpdateWithoutAppointmentListInput | ProviderUncheckedUpdateWithoutAppointmentListInput No

ProviderUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutProviderNestedInput No

ProviderUncheckedUpdateWithoutAppointmentListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUncheckedUpdateManyWithoutProviderNestedInput No


PrincipalUpdateToOneWithWhereWithoutCreatedAppointmentsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutCreatedAppointmentsInput | PrincipalUncheckedUpdateWithoutCreatedAppointmentsInput No

PrincipalUpdateWithoutCreatedAppointmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatedAppointmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutUpdatedAppointmentsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutUpdatedAppointmentsInput | PrincipalUncheckedUpdateWithoutUpdatedAppointmentsInput No

PrincipalUpdateWithoutUpdatedAppointmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdatedAppointmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

AppointmentCreateWithoutAppointmentTypeInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
location LocationCreateNestedOneWithoutAppointmentListInput No
patient PatientCreateNestedOneWithoutAppointmentListInput No
provider ProviderCreateNestedOneWithoutAppointmentListInput No
creator PrincipalCreateNestedOneWithoutCreatedAppointmentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput No

AppointmentUncheckedCreateWithoutAppointmentTypeInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentCreateOrConnectWithoutAppointmentTypeInput

Name Type Nullable
where AppointmentWhereUniqueInput No
create AppointmentCreateWithoutAppointmentTypeInput | AppointmentUncheckedCreateWithoutAppointmentTypeInput No

AppointmentCreateManyAppointmentTypeInputEnvelope

Name Type Nullable
data AppointmentCreateManyAppointmentTypeInput | AppointmentCreateManyAppointmentTypeInput[] No
skipDuplicates Boolean No


AppointmentUpdateWithWhereUniqueWithoutAppointmentTypeInput

Name Type Nullable
where AppointmentWhereUniqueInput No
data AppointmentUpdateWithoutAppointmentTypeInput | AppointmentUncheckedUpdateWithoutAppointmentTypeInput No

AppointmentUpdateManyWithWhereWithoutAppointmentTypeInput

Name Type Nullable
where AppointmentScalarWhereInput No
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutAppointmentTypeInput No

AppointmentCreateWithoutLocationInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
appointmentType AppointmentTypeCreateNestedOneWithoutAppointmentListInput No
patient PatientCreateNestedOneWithoutAppointmentListInput No
provider ProviderCreateNestedOneWithoutAppointmentListInput No
creator PrincipalCreateNestedOneWithoutCreatedAppointmentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput No

AppointmentUncheckedCreateWithoutLocationInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentCreateOrConnectWithoutLocationInput

Name Type Nullable
where AppointmentWhereUniqueInput No
create AppointmentCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput No

AppointmentCreateManyLocationInputEnvelope

Name Type Nullable
data AppointmentCreateManyLocationInput | AppointmentCreateManyLocationInput[] No
skipDuplicates Boolean No

EncounterCreateWithoutLocationInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutLocationInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutLocationInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput No

EncounterCreateManyLocationInputEnvelope

Name Type Nullable
data EncounterCreateManyLocationInput | EncounterCreateManyLocationInput[] No
skipDuplicates Boolean No


AppointmentUpdateWithWhereUniqueWithoutLocationInput

Name Type Nullable
where AppointmentWhereUniqueInput No
data AppointmentUpdateWithoutLocationInput | AppointmentUncheckedUpdateWithoutLocationInput No

AppointmentUpdateManyWithWhereWithoutLocationInput

Name Type Nullable
where AppointmentScalarWhereInput No
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutLocationInput No


EncounterUpdateWithWhereUniqueWithoutLocationInput

Name Type Nullable
where EncounterWhereUniqueInput No
data EncounterUpdateWithoutLocationInput | EncounterUncheckedUpdateWithoutLocationInput No

EncounterUpdateManyWithWhereWithoutLocationInput

Name Type Nullable
where EncounterScalarWhereInput No
data EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutLocationInput No

EncounterScalarWhereInput

Name Type Nullable
AND EncounterScalarWhereInput | EncounterScalarWhereInput[] No
OR EncounterScalarWhereInput[] No
NOT EncounterScalarWhereInput | EncounterScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
encounterTypeId UuidFilter | String No
patientId UuidFilter | String No
locationId UuidFilter | String No
formId UuidFilter | String No
providerId UuidFilter | String No
startDatetime DateTimeFilter | DateTime No
endDatetime DateTimeFilter | DateTime No
voided BoolFilter | Boolean No
voidedBy StringFilter | String No
dateVoided DateTimeFilter | DateTime No
voidReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No

PaymentCreateWithoutPayerInput

Name Type Nullable
id String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
receiver PrincipalCreateNestedOneWithoutReceivedPaymentListInput No
creator PrincipalCreateNestedOneWithoutCreatedPaymentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPaymentsInput No

PaymentUncheckedCreateWithoutPayerInput

Name Type Nullable
id String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

PaymentCreateOrConnectWithoutPayerInput

Name Type Nullable
where PaymentWhereUniqueInput No
create PaymentCreateWithoutPayerInput | PaymentUncheckedCreateWithoutPayerInput No

PaymentCreateManyPayerInputEnvelope

Name Type Nullable
data PaymentCreateManyPayerInput | PaymentCreateManyPayerInput[] No
skipDuplicates Boolean No

PrincipalCreateWithoutCreatedPatientsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatedPatientsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatedPatientsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatedPatientsInput | PrincipalUncheckedCreateWithoutCreatedPatientsInput No

PrincipalCreateWithoutUpdatedPatientsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdatedPatientsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdatedPatientsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdatedPatientsInput | PrincipalUncheckedCreateWithoutUpdatedPatientsInput No

AppointmentCreateWithoutPatientInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
appointmentType AppointmentTypeCreateNestedOneWithoutAppointmentListInput No
location LocationCreateNestedOneWithoutAppointmentListInput No
provider ProviderCreateNestedOneWithoutAppointmentListInput No
creator PrincipalCreateNestedOneWithoutCreatedAppointmentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput No

AppointmentUncheckedCreateWithoutPatientInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentCreateOrConnectWithoutPatientInput

Name Type Nullable
where AppointmentWhereUniqueInput No
create AppointmentCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput No

AppointmentCreateManyPatientInputEnvelope

Name Type Nullable
data AppointmentCreateManyPatientInput | AppointmentCreateManyPatientInput[] No
skipDuplicates Boolean No

EncounterCreateWithoutPatientInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutPatientInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutPatientInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput No

EncounterCreateManyPatientInputEnvelope

Name Type Nullable
data EncounterCreateManyPatientInput | EncounterCreateManyPatientInput[] No
skipDuplicates Boolean No


PaymentUpdateWithWhereUniqueWithoutPayerInput

Name Type Nullable
where PaymentWhereUniqueInput No
data PaymentUpdateWithoutPayerInput | PaymentUncheckedUpdateWithoutPayerInput No

PaymentUpdateManyWithWhereWithoutPayerInput

Name Type Nullable
where PaymentScalarWhereInput No
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutPayerInput No


PrincipalUpdateToOneWithWhereWithoutCreatedPatientsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutCreatedPatientsInput | PrincipalUncheckedUpdateWithoutCreatedPatientsInput No

PrincipalUpdateWithoutCreatedPatientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatedPatientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutUpdatedPatientsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutUpdatedPatientsInput | PrincipalUncheckedUpdateWithoutUpdatedPatientsInput No

PrincipalUpdateWithoutUpdatedPatientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdatedPatientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


AppointmentUpdateWithWhereUniqueWithoutPatientInput

Name Type Nullable
where AppointmentWhereUniqueInput No
data AppointmentUpdateWithoutPatientInput | AppointmentUncheckedUpdateWithoutPatientInput No

AppointmentUpdateManyWithWhereWithoutPatientInput

Name Type Nullable
where AppointmentScalarWhereInput No
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutPatientInput No


EncounterUpdateWithWhereUniqueWithoutPatientInput

Name Type Nullable
where EncounterWhereUniqueInput No
data EncounterUpdateWithoutPatientInput | EncounterUncheckedUpdateWithoutPatientInput No

EncounterUpdateManyWithWhereWithoutPatientInput

Name Type Nullable
where EncounterScalarWhereInput No
data EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutPatientInput No

PrincipalCreateWithoutCreatedEquipmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatedEquipmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatedEquipmentsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatedEquipmentsInput | PrincipalUncheckedCreateWithoutCreatedEquipmentsInput No

PrincipalCreateWithoutUpdatedEquipmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdatedEquipmentsInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdatedEquipmentsInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdatedEquipmentsInput | PrincipalUncheckedCreateWithoutUpdatedEquipmentsInput No


PrincipalUpdateToOneWithWhereWithoutCreatedEquipmentsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutCreatedEquipmentsInput | PrincipalUncheckedUpdateWithoutCreatedEquipmentsInput No

PrincipalUpdateWithoutCreatedEquipmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatedEquipmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutUpdatedEquipmentsInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutUpdatedEquipmentsInput | PrincipalUncheckedUpdateWithoutUpdatedEquipmentsInput No

PrincipalUpdateWithoutUpdatedEquipmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdatedEquipmentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

PrincipalCreateWithoutCreatedServicesInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
updatedServices ServiceCreateNestedManyWithoutUpdaterInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutCreatedServicesInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
updatedServices ServiceUncheckedCreateNestedManyWithoutUpdaterInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutCreatedServicesInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutCreatedServicesInput | PrincipalUncheckedCreateWithoutCreatedServicesInput No

PrincipalCreateWithoutUpdatedServicesInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
creator PrincipalCreateNestedOneWithoutCreatedPrincipalsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPrincipalsInput No
createdPrincipals PrincipalCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentCreateNestedManyWithoutUpdaterInput No
createdPatients PatientCreateNestedManyWithoutCreatorInput No
updatedPatients PatientCreateNestedManyWithoutUpdaterInput No
createdServices ServiceCreateNestedManyWithoutCreatorInput No
accounts AccountCreateNestedManyWithoutUserInput No
authenticator AuthenticatorCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentCreateNestedManyWithoutReceiverInput No
sessions SessionCreateNestedManyWithoutUserInput No

PrincipalUncheckedCreateWithoutUpdatedServicesInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
createdPrincipals PrincipalUncheckedCreateNestedManyWithoutCreatorInput No
updatedPrincipals PrincipalUncheckedCreateNestedManyWithoutUpdaterInput No
createdPayments PaymentUncheckedCreateNestedManyWithoutCreatorInput No
updatedPayments PaymentUncheckedCreateNestedManyWithoutUpdaterInput No
createdAppointments AppointmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedAppointments AppointmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdEquipments EquipmentUncheckedCreateNestedManyWithoutCreatorInput No
updatedEquipments EquipmentUncheckedCreateNestedManyWithoutUpdaterInput No
createdPatients PatientUncheckedCreateNestedManyWithoutCreatorInput No
updatedPatients PatientUncheckedCreateNestedManyWithoutUpdaterInput No
createdServices ServiceUncheckedCreateNestedManyWithoutCreatorInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
authenticator AuthenticatorUncheckedCreateNestedManyWithoutUserInput No
receivedPaymentList PaymentUncheckedCreateNestedManyWithoutReceiverInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No

PrincipalCreateOrConnectWithoutUpdatedServicesInput

Name Type Nullable
where PrincipalWhereUniqueInput No
create PrincipalCreateWithoutUpdatedServicesInput | PrincipalUncheckedCreateWithoutUpdatedServicesInput No


PrincipalUpdateToOneWithWhereWithoutCreatedServicesInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutCreatedServicesInput | PrincipalUncheckedUpdateWithoutCreatedServicesInput No

PrincipalUpdateWithoutCreatedServicesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatedServicesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No


PrincipalUpdateToOneWithWhereWithoutUpdatedServicesInput

Name Type Nullable
where PrincipalWhereInput No
data PrincipalUpdateWithoutUpdatedServicesInput | PrincipalUncheckedUpdateWithoutUpdatedServicesInput No

PrincipalUpdateWithoutUpdatedServicesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdatedServicesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

AppointmentCreateWithoutProviderInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
createdAt DateTime No
updatedAt DateTime No
appointmentType AppointmentTypeCreateNestedOneWithoutAppointmentListInput No
location LocationCreateNestedOneWithoutAppointmentListInput No
patient PatientCreateNestedOneWithoutAppointmentListInput No
creator PrincipalCreateNestedOneWithoutCreatedAppointmentsInput No
updater PrincipalCreateNestedOneWithoutUpdatedAppointmentsInput No

AppointmentUncheckedCreateWithoutProviderInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentCreateOrConnectWithoutProviderInput

Name Type Nullable
where AppointmentWhereUniqueInput No
create AppointmentCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput No

AppointmentCreateManyProviderInputEnvelope

Name Type Nullable
data AppointmentCreateManyProviderInput | AppointmentCreateManyProviderInput[] No
skipDuplicates Boolean No

EncounterCreateWithoutProviderInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutProviderInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutProviderInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput No

EncounterCreateManyProviderInputEnvelope

Name Type Nullable
data EncounterCreateManyProviderInput | EncounterCreateManyProviderInput[] No
skipDuplicates Boolean No


AppointmentUpdateWithWhereUniqueWithoutProviderInput

Name Type Nullable
where AppointmentWhereUniqueInput No
data AppointmentUpdateWithoutProviderInput | AppointmentUncheckedUpdateWithoutProviderInput No

AppointmentUpdateManyWithWhereWithoutProviderInput

Name Type Nullable
where AppointmentScalarWhereInput No
data AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutProviderInput No


EncounterUpdateWithWhereUniqueWithoutProviderInput

Name Type Nullable
where EncounterWhereUniqueInput No
data EncounterUpdateWithoutProviderInput | EncounterUncheckedUpdateWithoutProviderInput No

EncounterUpdateManyWithWhereWithoutProviderInput

Name Type Nullable
where EncounterScalarWhereInput No
data EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutProviderInput No

EncounterCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutFormInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput No

EncounterCreateManyFormInputEnvelope

Name Type Nullable
data EncounterCreateManyFormInput | EncounterCreateManyFormInput[] No
skipDuplicates Boolean No

FieldCreateWithoutFormListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutFieldListInput No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFieldInput No
fieldOptionList FieldOptionCreateNestedManyWithoutFieldInput No

FieldUncheckedCreateWithoutFormListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFieldInput No
fieldOptionList FieldOptionUncheckedCreateNestedManyWithoutFieldInput No

FieldCreateOrConnectWithoutFormListInput

Name Type Nullable
where FieldWhereUniqueInput No
create FieldCreateWithoutFormListInput | FieldUncheckedCreateWithoutFormListInput No

FormEncounterCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounter EncounterCreateNestedOneWithoutFormEncounterListInput No

FormEncounterUncheckedCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
encounterId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormEncounterCreateOrConnectWithoutFormInput

Name Type Nullable
where FormEncounterWhereUniqueInput No
create FormEncounterCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput No

FormEncounterCreateManyFormInputEnvelope

Name Type Nullable
data FormEncounterCreateManyFormInput | FormEncounterCreateManyFormInput[] No
skipDuplicates Boolean No

FormResourceCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
resource ResourceCreateNestedOneWithoutFormResourceListInput No

FormResourceUncheckedCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
resourceId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceCreateOrConnectWithoutFormInput

Name Type Nullable
where FormResourceWhereUniqueInput No
create FormResourceCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput No

FormResourceCreateManyFormInputEnvelope

Name Type Nullable
data FormResourceCreateManyFormInput | FormResourceCreateManyFormInput[] No
skipDuplicates Boolean No

FormSubmissionCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFormSubmissionInput No
encounter EncounterCreateNestedOneWithoutFormSubmissionListInput No

FormSubmissionUncheckedCreateWithoutFormInput

Name Type Nullable
id String No
uuid String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFormSubmissionInput No

FormSubmissionCreateOrConnectWithoutFormInput

Name Type Nullable
where FormSubmissionWhereUniqueInput No
create FormSubmissionCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput No

FormSubmissionCreateManyFormInputEnvelope

Name Type Nullable
data FormSubmissionCreateManyFormInput | FormSubmissionCreateManyFormInput[] No
skipDuplicates Boolean No


EncounterUpdateWithWhereUniqueWithoutFormInput

Name Type Nullable
where EncounterWhereUniqueInput No
data EncounterUpdateWithoutFormInput | EncounterUncheckedUpdateWithoutFormInput No

EncounterUpdateManyWithWhereWithoutFormInput

Name Type Nullable
where EncounterScalarWhereInput No
data EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutFormInput No


FieldUpdateToOneWithWhereWithoutFormListInput

Name Type Nullable
where FieldWhereInput No
data FieldUpdateWithoutFormListInput | FieldUncheckedUpdateWithoutFormListInput No

FieldUpdateWithoutFormListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutFieldListNestedInput No
fieldAnswerList FieldAnswerUpdateManyWithoutFieldNestedInput No
fieldOptionList FieldOptionUpdateManyWithoutFieldNestedInput No

FieldUncheckedUpdateWithoutFormListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput No
fieldOptionList FieldOptionUncheckedUpdateManyWithoutFieldNestedInput No


FormEncounterUpdateWithWhereUniqueWithoutFormInput

Name Type Nullable
where FormEncounterWhereUniqueInput No
data FormEncounterUpdateWithoutFormInput | FormEncounterUncheckedUpdateWithoutFormInput No

FormEncounterUpdateManyWithWhereWithoutFormInput

Name Type Nullable
where FormEncounterScalarWhereInput No
data FormEncounterUpdateManyMutationInput | FormEncounterUncheckedUpdateManyWithoutFormInput No

FormEncounterScalarWhereInput

Name Type Nullable
AND FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] No
OR FormEncounterScalarWhereInput[] No
NOT FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formId UuidFilter | String No
encounterId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


FormResourceUpdateWithWhereUniqueWithoutFormInput

Name Type Nullable
where FormResourceWhereUniqueInput No
data FormResourceUpdateWithoutFormInput | FormResourceUncheckedUpdateWithoutFormInput No

FormResourceUpdateManyWithWhereWithoutFormInput

Name Type Nullable
where FormResourceScalarWhereInput No
data FormResourceUpdateManyMutationInput | FormResourceUncheckedUpdateManyWithoutFormInput No

FormResourceScalarWhereInput

Name Type Nullable
AND FormResourceScalarWhereInput | FormResourceScalarWhereInput[] No
OR FormResourceScalarWhereInput[] No
NOT FormResourceScalarWhereInput | FormResourceScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formId UuidFilter | String No
resourceId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


FormSubmissionUpdateWithWhereUniqueWithoutFormInput

Name Type Nullable
where FormSubmissionWhereUniqueInput No
data FormSubmissionUpdateWithoutFormInput | FormSubmissionUncheckedUpdateWithoutFormInput No

FormSubmissionUpdateManyWithWhereWithoutFormInput

Name Type Nullable
where FormSubmissionScalarWhereInput No
data FormSubmissionUpdateManyMutationInput | FormSubmissionUncheckedUpdateManyWithoutFormInput No

FormSubmissionScalarWhereInput

Name Type Nullable
AND FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] No
OR FormSubmissionScalarWhereInput[] No
NOT FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formId UuidFilter | String No
encounterId UuidFilter | String No
submissionDate DateTimeFilter | DateTime No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No

EncounterCreateWithoutFormEncounterListInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutFormEncounterListInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutFormEncounterListInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutFormEncounterListInput | EncounterUncheckedCreateWithoutFormEncounterListInput No

FormCreateWithoutFormEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutFormInput No
field FieldCreateNestedOneWithoutFormListInput No
formResourceList FormResourceCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutFormInput No

FormUncheckedCreateWithoutFormEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String | Null Yes
encounterList EncounterUncheckedCreateNestedManyWithoutFormInput No
formResourceList FormResourceUncheckedCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutFormInput No

FormCreateOrConnectWithoutFormEncounterListInput

Name Type Nullable
where FormWhereUniqueInput No
create FormCreateWithoutFormEncounterListInput | FormUncheckedCreateWithoutFormEncounterListInput No


EncounterUpdateToOneWithWhereWithoutFormEncounterListInput

Name Type Nullable
where EncounterWhereInput No
data EncounterUpdateWithoutFormEncounterListInput | EncounterUncheckedUpdateWithoutFormEncounterListInput No

EncounterUpdateWithoutFormEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutFormEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No


FormUpdateToOneWithWhereWithoutFormEncounterListInput

Name Type Nullable
where FormWhereInput No
data FormUpdateWithoutFormEncounterListInput | FormUncheckedUpdateWithoutFormEncounterListInput No

FormUpdateWithoutFormEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutFormNestedInput No
field FieldUpdateOneWithoutFormListNestedInput No
formResourceList FormResourceUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateWithoutFormEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldId String | NullableStringFieldUpdateOperationsInput | Null Yes
encounterList EncounterUncheckedUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUncheckedUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutFormNestedInput No

FormCreateWithoutFormResourceListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutFormInput No
field FieldCreateNestedOneWithoutFormListInput No
formEncounterList FormEncounterCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutFormInput No

FormUncheckedCreateWithoutFormResourceListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String | Null Yes
encounterList EncounterUncheckedCreateNestedManyWithoutFormInput No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutFormInput No

FormCreateOrConnectWithoutFormResourceListInput

Name Type Nullable
where FormWhereUniqueInput No
create FormCreateWithoutFormResourceListInput | FormUncheckedCreateWithoutFormResourceListInput No

ResourceCreateWithoutFormResourceListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ResourceUncheckedCreateWithoutFormResourceListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ResourceCreateOrConnectWithoutFormResourceListInput

Name Type Nullable
where ResourceWhereUniqueInput No
create ResourceCreateWithoutFormResourceListInput | ResourceUncheckedCreateWithoutFormResourceListInput No


FormUpdateToOneWithWhereWithoutFormResourceListInput

Name Type Nullable
where FormWhereInput No
data FormUpdateWithoutFormResourceListInput | FormUncheckedUpdateWithoutFormResourceListInput No

FormUpdateWithoutFormResourceListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutFormNestedInput No
field FieldUpdateOneWithoutFormListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateWithoutFormResourceListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldId String | NullableStringFieldUpdateOperationsInput | Null Yes
encounterList EncounterUncheckedUpdateManyWithoutFormNestedInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutFormNestedInput No


ResourceUpdateToOneWithWhereWithoutFormResourceListInput

Name Type Nullable
where ResourceWhereInput No
data ResourceUpdateWithoutFormResourceListInput | ResourceUncheckedUpdateWithoutFormResourceListInput No

ResourceUpdateWithoutFormResourceListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ResourceUncheckedUpdateWithoutFormResourceListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerCreateWithoutFormSubmissionInput

Name Type Nullable
id String No
uuid String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
field FieldCreateNestedOneWithoutFieldAnswerListInput No

FieldAnswerUncheckedCreateWithoutFormSubmissionInput

Name Type Nullable
id String No
uuid String No
fieldId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerCreateOrConnectWithoutFormSubmissionInput

Name Type Nullable
where FieldAnswerWhereUniqueInput No
create FieldAnswerCreateWithoutFormSubmissionInput | FieldAnswerUncheckedCreateWithoutFormSubmissionInput No

FieldAnswerCreateManyFormSubmissionInputEnvelope

Name Type Nullable
data FieldAnswerCreateManyFormSubmissionInput | FieldAnswerCreateManyFormSubmissionInput[] No
skipDuplicates Boolean No

EncounterCreateWithoutFormSubmissionListInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutFormSubmissionListInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutFormSubmissionListInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutFormSubmissionListInput | EncounterUncheckedCreateWithoutFormSubmissionListInput No

FormCreateWithoutFormSubmissionListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutFormInput No
field FieldCreateNestedOneWithoutFormListInput No
formEncounterList FormEncounterCreateNestedManyWithoutFormInput No
formResourceList FormResourceCreateNestedManyWithoutFormInput No

FormUncheckedCreateWithoutFormSubmissionListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String | Null Yes
encounterList EncounterUncheckedCreateNestedManyWithoutFormInput No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutFormInput No
formResourceList FormResourceUncheckedCreateNestedManyWithoutFormInput No

FormCreateOrConnectWithoutFormSubmissionListInput

Name Type Nullable
where FormWhereUniqueInput No
create FormCreateWithoutFormSubmissionListInput | FormUncheckedCreateWithoutFormSubmissionListInput No


FieldAnswerUpdateWithWhereUniqueWithoutFormSubmissionInput

Name Type Nullable
where FieldAnswerWhereUniqueInput No
data FieldAnswerUpdateWithoutFormSubmissionInput | FieldAnswerUncheckedUpdateWithoutFormSubmissionInput No

FieldAnswerUpdateManyWithWhereWithoutFormSubmissionInput

Name Type Nullable
where FieldAnswerScalarWhereInput No
data FieldAnswerUpdateManyMutationInput | FieldAnswerUncheckedUpdateManyWithoutFormSubmissionInput No

FieldAnswerScalarWhereInput

Name Type Nullable
AND FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] No
OR FieldAnswerScalarWhereInput[] No
NOT FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
formSubmissionId UuidFilter | String No
fieldId UuidFilter | String No
value StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


EncounterUpdateToOneWithWhereWithoutFormSubmissionListInput

Name Type Nullable
where EncounterWhereInput No
data EncounterUpdateWithoutFormSubmissionListInput | EncounterUncheckedUpdateWithoutFormSubmissionListInput No

EncounterUpdateWithoutFormSubmissionListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutFormSubmissionListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No


FormUpdateToOneWithWhereWithoutFormSubmissionListInput

Name Type Nullable
where FormWhereInput No
data FormUpdateWithoutFormSubmissionListInput | FormUncheckedUpdateWithoutFormSubmissionListInput No

FormUpdateWithoutFormSubmissionListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutFormNestedInput No
field FieldUpdateOneWithoutFormListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateWithoutFormSubmissionListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldId String | NullableStringFieldUpdateOperationsInput | Null Yes
encounterList EncounterUncheckedUpdateManyWithoutFormNestedInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUncheckedUpdateManyWithoutFormNestedInput No

ConceptCreateWithoutFieldListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutFieldListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutFieldListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutFieldListInput | ConceptUncheckedCreateWithoutFieldListInput No

FieldAnswerCreateWithoutFieldInput

Name Type Nullable
id String No
uuid String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formSubmission FormSubmissionCreateNestedOneWithoutFieldAnswerListInput No

FieldAnswerUncheckedCreateWithoutFieldInput

Name Type Nullable
id String No
uuid String No
formSubmissionId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerCreateOrConnectWithoutFieldInput

Name Type Nullable
where FieldAnswerWhereUniqueInput No
create FieldAnswerCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput No

FieldAnswerCreateManyFieldInputEnvelope

Name Type Nullable
data FieldAnswerCreateManyFieldInput | FieldAnswerCreateManyFieldInput[] No
skipDuplicates Boolean No

FieldOptionCreateWithoutFieldInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionUncheckedCreateWithoutFieldInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionCreateOrConnectWithoutFieldInput

Name Type Nullable
where FieldOptionWhereUniqueInput No
create FieldOptionCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput No

FieldOptionCreateManyFieldInputEnvelope

Name Type Nullable
data FieldOptionCreateManyFieldInput | FieldOptionCreateManyFieldInput[] No
skipDuplicates Boolean No

FormCreateWithoutFieldInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterCreateNestedManyWithoutFormInput No
formEncounterList FormEncounterCreateNestedManyWithoutFormInput No
formResourceList FormResourceCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutFormInput No

FormUncheckedCreateWithoutFieldInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterList EncounterUncheckedCreateNestedManyWithoutFormInput No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutFormInput No
formResourceList FormResourceUncheckedCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutFormInput No

FormCreateOrConnectWithoutFieldInput

Name Type Nullable
where FormWhereUniqueInput No
create FormCreateWithoutFieldInput | FormUncheckedCreateWithoutFieldInput No

FormCreateManyFieldInputEnvelope

Name Type Nullable
data FormCreateManyFieldInput | FormCreateManyFieldInput[] No
skipDuplicates Boolean No


ConceptUpdateToOneWithWhereWithoutFieldListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutFieldListInput | ConceptUncheckedUpdateWithoutFieldListInput No

ConceptUpdateWithoutFieldListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutFieldListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No


FieldAnswerUpdateWithWhereUniqueWithoutFieldInput

Name Type Nullable
where FieldAnswerWhereUniqueInput No
data FieldAnswerUpdateWithoutFieldInput | FieldAnswerUncheckedUpdateWithoutFieldInput No

FieldAnswerUpdateManyWithWhereWithoutFieldInput

Name Type Nullable
where FieldAnswerScalarWhereInput No
data FieldAnswerUpdateManyMutationInput | FieldAnswerUncheckedUpdateManyWithoutFieldInput No


FieldOptionUpdateWithWhereUniqueWithoutFieldInput

Name Type Nullable
where FieldOptionWhereUniqueInput No
data FieldOptionUpdateWithoutFieldInput | FieldOptionUncheckedUpdateWithoutFieldInput No

FieldOptionUpdateManyWithWhereWithoutFieldInput

Name Type Nullable
where FieldOptionScalarWhereInput No
data FieldOptionUpdateManyMutationInput | FieldOptionUncheckedUpdateManyWithoutFieldInput No

FieldOptionScalarWhereInput

Name Type Nullable
AND FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] No
OR FieldOptionScalarWhereInput[] No
NOT FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
fieldId UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No

FormUpsertWithWhereUniqueWithoutFieldInput

Name Type Nullable
where FormWhereUniqueInput No
update FormUpdateWithoutFieldInput | FormUncheckedUpdateWithoutFieldInput No
create FormCreateWithoutFieldInput | FormUncheckedCreateWithoutFieldInput No

FormUpdateWithWhereUniqueWithoutFieldInput

Name Type Nullable
where FormWhereUniqueInput No
data FormUpdateWithoutFieldInput | FormUncheckedUpdateWithoutFieldInput No

FormUpdateManyWithWhereWithoutFieldInput

Name Type Nullable
where FormScalarWhereInput No
data FormUpdateManyMutationInput | FormUncheckedUpdateManyWithoutFieldInput No

FormScalarWhereInput

Name Type Nullable
AND FormScalarWhereInput | FormScalarWhereInput[] No
OR FormScalarWhereInput[] No
NOT FormScalarWhereInput | FormScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
version StringFilter | String No
retired BoolFilter | Boolean No
retiredBy StringFilter | String No
dateRetired DateTimeFilter | DateTime No
retiredReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
fieldId UuidNullableFilter | String | Null Yes

FieldCreateWithoutFieldAnswerListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutFieldListInput No
fieldOptionList FieldOptionCreateNestedManyWithoutFieldInput No
formList FormCreateNestedManyWithoutFieldInput No

FieldUncheckedCreateWithoutFieldAnswerListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldOptionList FieldOptionUncheckedCreateNestedManyWithoutFieldInput No
formList FormUncheckedCreateNestedManyWithoutFieldInput No

FieldCreateOrConnectWithoutFieldAnswerListInput

Name Type Nullable
where FieldWhereUniqueInput No
create FieldCreateWithoutFieldAnswerListInput | FieldUncheckedCreateWithoutFieldAnswerListInput No

FormSubmissionCreateWithoutFieldAnswerListInput

Name Type Nullable
id String No
uuid String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounter EncounterCreateNestedOneWithoutFormSubmissionListInput No
form FormCreateNestedOneWithoutFormSubmissionListInput No

FormSubmissionUncheckedCreateWithoutFieldAnswerListInput

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormSubmissionCreateOrConnectWithoutFieldAnswerListInput

Name Type Nullable
where FormSubmissionWhereUniqueInput No
create FormSubmissionCreateWithoutFieldAnswerListInput | FormSubmissionUncheckedCreateWithoutFieldAnswerListInput No


FieldUpdateToOneWithWhereWithoutFieldAnswerListInput

Name Type Nullable
where FieldWhereInput No
data FieldUpdateWithoutFieldAnswerListInput | FieldUncheckedUpdateWithoutFieldAnswerListInput No

FieldUpdateWithoutFieldAnswerListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutFieldListNestedInput No
fieldOptionList FieldOptionUpdateManyWithoutFieldNestedInput No
formList FormUpdateManyWithoutFieldNestedInput No

FieldUncheckedUpdateWithoutFieldAnswerListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldOptionList FieldOptionUncheckedUpdateManyWithoutFieldNestedInput No
formList FormUncheckedUpdateManyWithoutFieldNestedInput No


FormSubmissionUpdateToOneWithWhereWithoutFieldAnswerListInput

Name Type Nullable
where FormSubmissionWhereInput No
data FormSubmissionUpdateWithoutFieldAnswerListInput | FormSubmissionUncheckedUpdateWithoutFieldAnswerListInput No

FormSubmissionUpdateWithoutFieldAnswerListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounter EncounterUpdateOneRequiredWithoutFormSubmissionListNestedInput No
form FormUpdateOneRequiredWithoutFormSubmissionListNestedInput No

FormSubmissionUncheckedUpdateWithoutFieldAnswerListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldCreateWithoutFieldOptionListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutFieldListInput No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFieldInput No
formList FormCreateNestedManyWithoutFieldInput No

FieldUncheckedCreateWithoutFieldOptionListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFieldInput No
formList FormUncheckedCreateNestedManyWithoutFieldInput No

FieldCreateOrConnectWithoutFieldOptionListInput

Name Type Nullable
where FieldWhereUniqueInput No
create FieldCreateWithoutFieldOptionListInput | FieldUncheckedCreateWithoutFieldOptionListInput No


FieldUpdateToOneWithWhereWithoutFieldOptionListInput

Name Type Nullable
where FieldWhereInput No
data FieldUpdateWithoutFieldOptionListInput | FieldUncheckedUpdateWithoutFieldOptionListInput No

FieldUpdateWithoutFieldOptionListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutFieldListNestedInput No
fieldAnswerList FieldAnswerUpdateManyWithoutFieldNestedInput No
formList FormUpdateManyWithoutFieldNestedInput No

FieldUncheckedUpdateWithoutFieldOptionListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput No
formList FormUncheckedUpdateManyWithoutFieldNestedInput No

EncounterTypeCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterTypeUncheckedCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterTypeCreateOrConnectWithoutEncounterListInput

Name Type Nullable
where EncounterTypeWhereUniqueInput No
create EncounterTypeCreateWithoutEncounterListInput | EncounterTypeUncheckedCreateWithoutEncounterListInput No

FormCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
field FieldCreateNestedOneWithoutFormListInput No
formEncounterList FormEncounterCreateNestedManyWithoutFormInput No
formResourceList FormResourceCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutFormInput No

FormUncheckedCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String | Null Yes
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutFormInput No
formResourceList FormResourceUncheckedCreateNestedManyWithoutFormInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutFormInput No

FormCreateOrConnectWithoutEncounterListInput

Name Type Nullable
where FormWhereUniqueInput No
create FormCreateWithoutEncounterListInput | FormUncheckedCreateWithoutEncounterListInput No

LocationCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentCreateNestedManyWithoutLocationInput No

LocationUncheckedCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentUncheckedCreateNestedManyWithoutLocationInput No

LocationCreateOrConnectWithoutEncounterListInput

Name Type Nullable
where LocationWhereUniqueInput No
create LocationCreateWithoutEncounterListInput | LocationUncheckedCreateWithoutEncounterListInput No

PatientCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
paymentList PaymentCreateNestedManyWithoutPayerInput No
creator PrincipalCreateNestedOneWithoutCreatedPatientsInput No
updater PrincipalCreateNestedOneWithoutUpdatedPatientsInput No
appointmentList AppointmentCreateNestedManyWithoutPatientInput No

PatientUncheckedCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes
paymentList PaymentUncheckedCreateNestedManyWithoutPayerInput No
appointmentList AppointmentUncheckedCreateNestedManyWithoutPatientInput No

PatientCreateOrConnectWithoutEncounterListInput

Name Type Nullable
where PatientWhereUniqueInput No
create PatientCreateWithoutEncounterListInput | PatientUncheckedCreateWithoutEncounterListInput No

ProviderCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentCreateNestedManyWithoutProviderInput No

ProviderUncheckedCreateWithoutEncounterListInput

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
appointmentList AppointmentUncheckedCreateNestedManyWithoutProviderInput No

ProviderCreateOrConnectWithoutEncounterListInput

Name Type Nullable
where ProviderWhereUniqueInput No
create ProviderCreateWithoutEncounterListInput | ProviderUncheckedCreateWithoutEncounterListInput No

FormEncounterCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
form FormCreateNestedOneWithoutFormEncounterListInput No

FormEncounterUncheckedCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
formId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormEncounterCreateOrConnectWithoutEncounterInput

Name Type Nullable
where FormEncounterWhereUniqueInput No
create FormEncounterCreateWithoutEncounterInput | FormEncounterUncheckedCreateWithoutEncounterInput No

FormEncounterCreateManyEncounterInputEnvelope

Name Type Nullable
data FormEncounterCreateManyEncounterInput | FormEncounterCreateManyEncounterInput[] No
skipDuplicates Boolean No

FormSubmissionCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFormSubmissionInput No
form FormCreateNestedOneWithoutFormSubmissionListInput No

FormSubmissionUncheckedCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
formId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFormSubmissionInput No

FormSubmissionCreateOrConnectWithoutEncounterInput

Name Type Nullable
where FormSubmissionWhereUniqueInput No
create FormSubmissionCreateWithoutEncounterInput | FormSubmissionUncheckedCreateWithoutEncounterInput No

FormSubmissionCreateManyEncounterInputEnvelope

Name Type Nullable
data FormSubmissionCreateManyEncounterInput | FormSubmissionCreateManyEncounterInput[] No
skipDuplicates Boolean No

ObsCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutObsListInput No

ObsUncheckedCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
conceptId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsCreateOrConnectWithoutEncounterInput

Name Type Nullable
where ObsWhereUniqueInput No
create ObsCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput No

ObsCreateManyEncounterInputEnvelope

Name Type Nullable
data ObsCreateManyEncounterInput | ObsCreateManyEncounterInput[] No
skipDuplicates Boolean No

OrderCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutOrderListInput No
OrderFrequency OrderFrequencyCreateNestedOneWithoutOrderListInput No
OrderRoute OrderRouteCreateNestedOneWithoutOrderListInput No
OrderType OrderTypeCreateNestedOneWithoutOrderListInput No
OrderUnit OrderUnitCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateWithoutEncounterInput

Name Type Nullable
id String No
uuid String No
conceptId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderCreateOrConnectWithoutEncounterInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput No

OrderCreateManyEncounterInputEnvelope

Name Type Nullable
data OrderCreateManyEncounterInput | OrderCreateManyEncounterInput[] No
skipDuplicates Boolean No


EncounterTypeUpdateToOneWithWhereWithoutEncounterListInput

Name Type Nullable
where EncounterTypeWhereInput No
data EncounterTypeUpdateWithoutEncounterListInput | EncounterTypeUncheckedUpdateWithoutEncounterListInput No

EncounterTypeUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

EncounterTypeUncheckedUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


FormUpdateToOneWithWhereWithoutEncounterListInput

Name Type Nullable
where FormWhereInput No
data FormUpdateWithoutEncounterListInput | FormUncheckedUpdateWithoutEncounterListInput No

FormUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
field FieldUpdateOneWithoutFormListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldId String | NullableStringFieldUpdateOperationsInput | Null Yes
formEncounterList FormEncounterUncheckedUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUncheckedUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutFormNestedInput No


LocationUpdateToOneWithWhereWithoutEncounterListInput

Name Type Nullable
where LocationWhereInput No
data LocationUpdateWithoutEncounterListInput | LocationUncheckedUpdateWithoutEncounterListInput No

LocationUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUpdateManyWithoutLocationNestedInput No

LocationUncheckedUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
address1 String | StringFieldUpdateOperationsInput No
address2 String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
stateProvince String | StringFieldUpdateOperationsInput No
country String | StringFieldUpdateOperationsInput No
postalCode String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUncheckedUpdateManyWithoutLocationNestedInput No


PatientUpdateToOneWithWhereWithoutEncounterListInput

Name Type Nullable
where PatientWhereInput No
data PatientUpdateWithoutEncounterListInput | PatientUncheckedUpdateWithoutEncounterListInput No

PatientUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
paymentList PaymentUpdateManyWithoutPayerNestedInput No
creator PrincipalUpdateOneWithoutCreatedPatientsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPatientsNestedInput No
appointmentList AppointmentUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentList PaymentUncheckedUpdateManyWithoutPayerNestedInput No
appointmentList AppointmentUncheckedUpdateManyWithoutPatientNestedInput No


ProviderUpdateToOneWithWhereWithoutEncounterListInput

Name Type Nullable
where ProviderWhereInput No
data ProviderUpdateWithoutEncounterListInput | ProviderUncheckedUpdateWithoutEncounterListInput No

ProviderUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUpdateManyWithoutProviderNestedInput No

ProviderUncheckedUpdateWithoutEncounterListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
appointmentList AppointmentUncheckedUpdateManyWithoutProviderNestedInput No


FormEncounterUpdateWithWhereUniqueWithoutEncounterInput

Name Type Nullable
where FormEncounterWhereUniqueInput No
data FormEncounterUpdateWithoutEncounterInput | FormEncounterUncheckedUpdateWithoutEncounterInput No

FormEncounterUpdateManyWithWhereWithoutEncounterInput

Name Type Nullable
where FormEncounterScalarWhereInput No
data FormEncounterUpdateManyMutationInput | FormEncounterUncheckedUpdateManyWithoutEncounterInput No


FormSubmissionUpdateWithWhereUniqueWithoutEncounterInput

Name Type Nullable
where FormSubmissionWhereUniqueInput No
data FormSubmissionUpdateWithoutEncounterInput | FormSubmissionUncheckedUpdateWithoutEncounterInput No

FormSubmissionUpdateManyWithWhereWithoutEncounterInput

Name Type Nullable
where FormSubmissionScalarWhereInput No
data FormSubmissionUpdateManyMutationInput | FormSubmissionUncheckedUpdateManyWithoutEncounterInput No


ObsUpdateWithWhereUniqueWithoutEncounterInput

Name Type Nullable
where ObsWhereUniqueInput No
data ObsUpdateWithoutEncounterInput | ObsUncheckedUpdateWithoutEncounterInput No

ObsUpdateManyWithWhereWithoutEncounterInput

Name Type Nullable
where ObsScalarWhereInput No
data ObsUpdateManyMutationInput | ObsUncheckedUpdateManyWithoutEncounterInput No

ObsScalarWhereInput

Name Type Nullable
AND ObsScalarWhereInput | ObsScalarWhereInput[] No
OR ObsScalarWhereInput[] No
NOT ObsScalarWhereInput | ObsScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
encounterId UuidFilter | String No
obsDatetime DateTimeFilter | DateTime No
valueDatetime DateTimeFilter | DateTime No
valueNumeric FloatFilter | Float No
valueText StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


OrderUpdateWithWhereUniqueWithoutEncounterInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutEncounterInput | OrderUncheckedUpdateWithoutEncounterInput No

OrderUpdateManyWithWhereWithoutEncounterInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutEncounterInput No

OrderScalarWhereInput

Name Type Nullable
AND OrderScalarWhereInput | OrderScalarWhereInput[] No
OR OrderScalarWhereInput[] No
NOT OrderScalarWhereInput | OrderScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
encounterId UuidFilter | String No
orderDatetime DateTimeFilter | DateTime No
instructions StringFilter | String No
dosage StringFilter | String No
route StringFilter | String No
frequency StringFilter | String No
asNeeded BoolFilter | Boolean No
prn BoolFilter | Boolean No
quantity IntFilter | Int No
units StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
orderFrequencyId UuidNullableFilter | String | Null Yes
orderRouteId UuidNullableFilter | String | Null Yes
orderTypeId UuidNullableFilter | String | Null Yes
orderUnitId UuidNullableFilter | String | Null Yes

EncounterCreateWithoutEncounterTypeInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutEncounterTypeInput

Name Type Nullable
id String No
uuid String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutEncounterTypeInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutEncounterTypeInput | EncounterUncheckedCreateWithoutEncounterTypeInput No

EncounterCreateManyEncounterTypeInputEnvelope

Name Type Nullable
data EncounterCreateManyEncounterTypeInput | EncounterCreateManyEncounterTypeInput[] No
skipDuplicates Boolean No


EncounterUpdateWithWhereUniqueWithoutEncounterTypeInput

Name Type Nullable
where EncounterWhereUniqueInput No
data EncounterUpdateWithoutEncounterTypeInput | EncounterUncheckedUpdateWithoutEncounterTypeInput No

EncounterUpdateManyWithWhereWithoutEncounterTypeInput

Name Type Nullable
where EncounterScalarWhereInput No
data EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutEncounterTypeInput No

ConceptCreateWithoutObsListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutObsListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutObsListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutObsListInput | ConceptUncheckedCreateWithoutObsListInput No

EncounterCreateWithoutObsListInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
orderList OrderCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutObsListInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
orderList OrderUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutObsListInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutObsListInput | EncounterUncheckedCreateWithoutObsListInput No


ConceptUpdateToOneWithWhereWithoutObsListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutObsListInput | ConceptUncheckedUpdateWithoutObsListInput No

ConceptUpdateWithoutObsListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutObsListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No


EncounterUpdateToOneWithWhereWithoutObsListInput

Name Type Nullable
where EncounterWhereInput No
data EncounterUpdateWithoutObsListInput | EncounterUncheckedUpdateWithoutObsListInput No

EncounterUpdateWithoutObsListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutObsListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

ConceptCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutOrderListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutOrderListInput | ConceptUncheckedCreateWithoutOrderListInput No

EncounterCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounterType EncounterTypeCreateNestedOneWithoutEncounterListInput No
form FormCreateNestedOneWithoutEncounterListInput No
location LocationCreateNestedOneWithoutEncounterListInput No
patient PatientCreateNestedOneWithoutEncounterListInput No
provider ProviderCreateNestedOneWithoutEncounterListInput No
formEncounterList FormEncounterCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionCreateNestedManyWithoutEncounterInput No
obsList ObsCreateNestedManyWithoutEncounterInput No

EncounterUncheckedCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
formEncounterList FormEncounterUncheckedCreateNestedManyWithoutEncounterInput No
formSubmissionList FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput No
obsList ObsUncheckedCreateNestedManyWithoutEncounterInput No

EncounterCreateOrConnectWithoutOrderListInput

Name Type Nullable
where EncounterWhereUniqueInput No
create EncounterCreateWithoutOrderListInput | EncounterUncheckedCreateWithoutOrderListInput No

OrderFrequencyCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderFrequencyUncheckedCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderFrequencyCreateOrConnectWithoutOrderListInput

Name Type Nullable
where OrderFrequencyWhereUniqueInput No
create OrderFrequencyCreateWithoutOrderListInput | OrderFrequencyUncheckedCreateWithoutOrderListInput No

OrderRouteCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderRouteUncheckedCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderRouteCreateOrConnectWithoutOrderListInput

Name Type Nullable
where OrderRouteWhereUniqueInput No
create OrderRouteCreateWithoutOrderListInput | OrderRouteUncheckedCreateWithoutOrderListInput No

OrderTypeCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderTypeUncheckedCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderTypeCreateOrConnectWithoutOrderListInput

Name Type Nullable
where OrderTypeWhereUniqueInput No
create OrderTypeCreateWithoutOrderListInput | OrderTypeUncheckedCreateWithoutOrderListInput No

OrderUnitCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderUnitUncheckedCreateWithoutOrderListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderUnitCreateOrConnectWithoutOrderListInput

Name Type Nullable
where OrderUnitWhereUniqueInput No
create OrderUnitCreateWithoutOrderListInput | OrderUnitUncheckedCreateWithoutOrderListInput No


ConceptUpdateToOneWithWhereWithoutOrderListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutOrderListInput | ConceptUncheckedUpdateWithoutOrderListInput No

ConceptUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No


EncounterUpdateToOneWithWhereWithoutOrderListInput

Name Type Nullable
where EncounterWhereInput No
data EncounterUpdateWithoutOrderListInput | EncounterUncheckedUpdateWithoutOrderListInput No

EncounterUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No


OrderFrequencyUpdateToOneWithWhereWithoutOrderListInput

Name Type Nullable
where OrderFrequencyWhereInput No
data OrderFrequencyUpdateWithoutOrderListInput | OrderFrequencyUncheckedUpdateWithoutOrderListInput No

OrderFrequencyUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderFrequencyUncheckedUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


OrderRouteUpdateToOneWithWhereWithoutOrderListInput

Name Type Nullable
where OrderRouteWhereInput No
data OrderRouteUpdateWithoutOrderListInput | OrderRouteUncheckedUpdateWithoutOrderListInput No

OrderRouteUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderRouteUncheckedUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


OrderTypeUpdateToOneWithWhereWithoutOrderListInput

Name Type Nullable
where OrderTypeWhereInput No
data OrderTypeUpdateWithoutOrderListInput | OrderTypeUncheckedUpdateWithoutOrderListInput No

OrderTypeUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderTypeUncheckedUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


OrderUnitUpdateToOneWithWhereWithoutOrderListInput

Name Type Nullable
where OrderUnitWhereInput No
data OrderUnitUpdateWithoutOrderListInput | OrderUnitUncheckedUpdateWithoutOrderListInput No

OrderUnitUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderUnitUncheckedUpdateWithoutOrderListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderCreateWithoutOrderFrequencyInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutOrderListInput No
encounter EncounterCreateNestedOneWithoutOrderListInput No
OrderRoute OrderRouteCreateNestedOneWithoutOrderListInput No
OrderType OrderTypeCreateNestedOneWithoutOrderListInput No
OrderUnit OrderUnitCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateWithoutOrderFrequencyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderCreateOrConnectWithoutOrderFrequencyInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput No

OrderCreateManyOrderFrequencyInputEnvelope

Name Type Nullable
data OrderCreateManyOrderFrequencyInput | OrderCreateManyOrderFrequencyInput[] No
skipDuplicates Boolean No


OrderUpdateWithWhereUniqueWithoutOrderFrequencyInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutOrderFrequencyInput | OrderUncheckedUpdateWithoutOrderFrequencyInput No

OrderUpdateManyWithWhereWithoutOrderFrequencyInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderFrequencyInput No

OrderCreateWithoutOrderRouteInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutOrderListInput No
encounter EncounterCreateNestedOneWithoutOrderListInput No
OrderFrequency OrderFrequencyCreateNestedOneWithoutOrderListInput No
OrderType OrderTypeCreateNestedOneWithoutOrderListInput No
OrderUnit OrderUnitCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateWithoutOrderRouteInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderCreateOrConnectWithoutOrderRouteInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput No

OrderCreateManyOrderRouteInputEnvelope

Name Type Nullable
data OrderCreateManyOrderRouteInput | OrderCreateManyOrderRouteInput[] No
skipDuplicates Boolean No


OrderUpdateWithWhereUniqueWithoutOrderRouteInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutOrderRouteInput | OrderUncheckedUpdateWithoutOrderRouteInput No

OrderUpdateManyWithWhereWithoutOrderRouteInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderRouteInput No

OrderCreateWithoutOrderTypeInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutOrderListInput No
encounter EncounterCreateNestedOneWithoutOrderListInput No
OrderFrequency OrderFrequencyCreateNestedOneWithoutOrderListInput No
OrderRoute OrderRouteCreateNestedOneWithoutOrderListInput No
OrderUnit OrderUnitCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateWithoutOrderTypeInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderUnitId String | Null Yes

OrderCreateOrConnectWithoutOrderTypeInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput No

OrderCreateManyOrderTypeInputEnvelope

Name Type Nullable
data OrderCreateManyOrderTypeInput | OrderCreateManyOrderTypeInput[] No
skipDuplicates Boolean No


OrderUpdateWithWhereUniqueWithoutOrderTypeInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutOrderTypeInput | OrderUncheckedUpdateWithoutOrderTypeInput No

OrderUpdateManyWithWhereWithoutOrderTypeInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderTypeInput No

OrderCreateWithoutOrderUnitInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutOrderListInput No
encounter EncounterCreateNestedOneWithoutOrderListInput No
OrderFrequency OrderFrequencyCreateNestedOneWithoutOrderListInput No
OrderRoute OrderRouteCreateNestedOneWithoutOrderListInput No
OrderType OrderTypeCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateWithoutOrderUnitInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes

OrderCreateOrConnectWithoutOrderUnitInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput No

OrderCreateManyOrderUnitInputEnvelope

Name Type Nullable
data OrderCreateManyOrderUnitInput | OrderCreateManyOrderUnitInput[] No
skipDuplicates Boolean No


OrderUpdateWithWhereUniqueWithoutOrderUnitInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutOrderUnitInput | OrderUncheckedUpdateWithoutOrderUnitInput No

OrderUpdateManyWithWhereWithoutOrderUnitInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderUnitInput No

ConceptClassCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptClassUncheckedCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptClassCreateOrConnectWithoutConceptListInput

Name Type Nullable
where ConceptClassWhereUniqueInput No
create ConceptClassCreateWithoutConceptListInput | ConceptClassUncheckedCreateWithoutConceptListInput No

ConceptDatatypeCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptDatatypeUncheckedCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptDatatypeCreateOrConnectWithoutConceptListInput

Name Type Nullable
where ConceptDatatypeWhereUniqueInput No
create ConceptDatatypeCreateWithoutConceptListInput | ConceptDatatypeUncheckedCreateWithoutConceptListInput No

ConceptMapCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptMapUncheckedCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptMapCreateOrConnectWithoutConceptListInput

Name Type Nullable
where ConceptMapWhereUniqueInput No
create ConceptMapCreateWithoutConceptListInput | ConceptMapUncheckedCreateWithoutConceptListInput No

ConceptSetCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSetUncheckedCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSetCreateOrConnectWithoutConceptListInput

Name Type Nullable
where ConceptSetWhereUniqueInput No
create ConceptSetCreateWithoutConceptListInput | ConceptSetUncheckedCreateWithoutConceptListInput No

ConceptSourceCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSourceUncheckedCreateWithoutConceptListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSourceCreateOrConnectWithoutConceptListInput

Name Type Nullable
where ConceptSourceWhereUniqueInput No
create ConceptSourceCreateWithoutConceptListInput | ConceptSourceUncheckedCreateWithoutConceptListInput No

ConceptAnswerCreateWithoutAnswerConceptInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
concept ConceptCreateNestedOneWithoutMetaListInput No

ConceptAnswerUncheckedCreateWithoutAnswerConceptInput

Name Type Nullable
id String No
uuid String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptAnswerCreateOrConnectWithoutAnswerConceptInput

Name Type Nullable
where ConceptAnswerWhereUniqueInput No
create ConceptAnswerCreateWithoutAnswerConceptInput | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput No

ConceptAnswerCreateManyAnswerConceptInputEnvelope

Name Type Nullable
data ConceptAnswerCreateManyAnswerConceptInput | ConceptAnswerCreateManyAnswerConceptInput[] No
skipDuplicates Boolean No

ConceptAnswerCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
answerConcept ConceptCreateNestedOneWithoutAnswerListInput No

ConceptAnswerUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
answerConceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptAnswerCreateOrConnectWithoutConceptInput

Name Type Nullable
where ConceptAnswerWhereUniqueInput No
create ConceptAnswerCreateWithoutConceptInput | ConceptAnswerUncheckedCreateWithoutConceptInput No

ConceptAnswerCreateManyConceptInputEnvelope

Name Type Nullable
data ConceptAnswerCreateManyConceptInput | ConceptAnswerCreateManyConceptInput[] No
skipDuplicates Boolean No

ConceptNameCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameCreateOrConnectWithoutConceptInput

Name Type Nullable
where ConceptNameWhereUniqueInput No
create ConceptNameCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput No

ConceptNameCreateManyConceptInputEnvelope

Name Type Nullable
data ConceptNameCreateManyConceptInput | ConceptNameCreateManyConceptInput[] No
skipDuplicates Boolean No

ConceptNumericCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericCreateOrConnectWithoutConceptInput

Name Type Nullable
where ConceptNumericWhereUniqueInput No
create ConceptNumericCreateWithoutConceptInput | ConceptNumericUncheckedCreateWithoutConceptInput No

ConceptNumericCreateManyConceptInputEnvelope

Name Type Nullable
data ConceptNumericCreateManyConceptInput | ConceptNumericCreateManyConceptInput[] No
skipDuplicates Boolean No

ConceptProposalCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalCreateOrConnectWithoutConceptInput

Name Type Nullable
where ConceptProposalWhereUniqueInput No
create ConceptProposalCreateWithoutConceptInput | ConceptProposalUncheckedCreateWithoutConceptInput No

ConceptProposalCreateManyConceptInputEnvelope

Name Type Nullable
data ConceptProposalCreateManyConceptInput | ConceptProposalCreateManyConceptInput[] No
skipDuplicates Boolean No

ConceptWordCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordCreateOrConnectWithoutConceptInput

Name Type Nullable
where ConceptWordWhereUniqueInput No
create ConceptWordCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput No

ConceptWordCreateManyConceptInputEnvelope

Name Type Nullable
data ConceptWordCreateManyConceptInput | ConceptWordCreateManyConceptInput[] No
skipDuplicates Boolean No

FieldCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerCreateNestedManyWithoutFieldInput No
fieldOptionList FieldOptionCreateNestedManyWithoutFieldInput No
formList FormCreateNestedManyWithoutFieldInput No

FieldUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldAnswerList FieldAnswerUncheckedCreateNestedManyWithoutFieldInput No
fieldOptionList FieldOptionUncheckedCreateNestedManyWithoutFieldInput No
formList FormUncheckedCreateNestedManyWithoutFieldInput No

FieldCreateOrConnectWithoutConceptInput

Name Type Nullable
where FieldWhereUniqueInput No
create FieldCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput No

FieldCreateManyConceptInputEnvelope

Name Type Nullable
data FieldCreateManyConceptInput | FieldCreateManyConceptInput[] No
skipDuplicates Boolean No

ObsCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounter EncounterCreateNestedOneWithoutObsListInput No

ObsUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
encounterId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsCreateOrConnectWithoutConceptInput

Name Type Nullable
where ObsWhereUniqueInput No
create ObsCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput No

ObsCreateManyConceptInputEnvelope

Name Type Nullable
data ObsCreateManyConceptInput | ObsCreateManyConceptInput[] No
skipDuplicates Boolean No

OrderCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
encounter EncounterCreateNestedOneWithoutOrderListInput No
OrderFrequency OrderFrequencyCreateNestedOneWithoutOrderListInput No
OrderRoute OrderRouteCreateNestedOneWithoutOrderListInput No
OrderType OrderTypeCreateNestedOneWithoutOrderListInput No
OrderUnit OrderUnitCreateNestedOneWithoutOrderListInput No

OrderUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
uuid String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderCreateOrConnectWithoutConceptInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput No

OrderCreateManyConceptInputEnvelope

Name Type Nullable
data OrderCreateManyConceptInput | OrderCreateManyConceptInput[] No
skipDuplicates Boolean No


ConceptClassUpdateToOneWithWhereWithoutConceptListInput

Name Type Nullable
where ConceptClassWhereInput No
data ConceptClassUpdateWithoutConceptListInput | ConceptClassUncheckedUpdateWithoutConceptListInput No

ConceptClassUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptClassUncheckedUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


ConceptDatatypeUpdateToOneWithWhereWithoutConceptListInput

Name Type Nullable
where ConceptDatatypeWhereInput No
data ConceptDatatypeUpdateWithoutConceptListInput | ConceptDatatypeUncheckedUpdateWithoutConceptListInput No

ConceptDatatypeUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptDatatypeUncheckedUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


ConceptMapUpdateToOneWithWhereWithoutConceptListInput

Name Type Nullable
where ConceptMapWhereInput No
data ConceptMapUpdateWithoutConceptListInput | ConceptMapUncheckedUpdateWithoutConceptListInput No

ConceptMapUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptMapUncheckedUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


ConceptSetUpdateToOneWithWhereWithoutConceptListInput

Name Type Nullable
where ConceptSetWhereInput No
data ConceptSetUpdateWithoutConceptListInput | ConceptSetUncheckedUpdateWithoutConceptListInput No

ConceptSetUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptSetUncheckedUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


ConceptSourceUpdateToOneWithWhereWithoutConceptListInput

Name Type Nullable
where ConceptSourceWhereInput No
data ConceptSourceUpdateWithoutConceptListInput | ConceptSourceUncheckedUpdateWithoutConceptListInput No

ConceptSourceUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptSourceUncheckedUpdateWithoutConceptListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No


ConceptAnswerUpdateWithWhereUniqueWithoutAnswerConceptInput

Name Type Nullable
where ConceptAnswerWhereUniqueInput No
data ConceptAnswerUpdateWithoutAnswerConceptInput | ConceptAnswerUncheckedUpdateWithoutAnswerConceptInput No

ConceptAnswerUpdateManyWithWhereWithoutAnswerConceptInput

Name Type Nullable
where ConceptAnswerScalarWhereInput No
data ConceptAnswerUpdateManyMutationInput | ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptInput No

ConceptAnswerScalarWhereInput

Name Type Nullable
AND ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] No
OR ConceptAnswerScalarWhereInput[] No
NOT ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
answerConceptId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


ConceptAnswerUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ConceptAnswerWhereUniqueInput No
data ConceptAnswerUpdateWithoutConceptInput | ConceptAnswerUncheckedUpdateWithoutConceptInput No

ConceptAnswerUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where ConceptAnswerScalarWhereInput No
data ConceptAnswerUpdateManyMutationInput | ConceptAnswerUncheckedUpdateManyWithoutConceptInput No


ConceptNameUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ConceptNameWhereUniqueInput No
data ConceptNameUpdateWithoutConceptInput | ConceptNameUncheckedUpdateWithoutConceptInput No

ConceptNameUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where ConceptNameScalarWhereInput No
data ConceptNameUpdateManyMutationInput | ConceptNameUncheckedUpdateManyWithoutConceptInput No

ConceptNameScalarWhereInput

Name Type Nullable
AND ConceptNameScalarWhereInput | ConceptNameScalarWhereInput[] No
OR ConceptNameScalarWhereInput[] No
NOT ConceptNameScalarWhereInput | ConceptNameScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
name StringFilter | String No
locale StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


ConceptNumericUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ConceptNumericWhereUniqueInput No
data ConceptNumericUpdateWithoutConceptInput | ConceptNumericUncheckedUpdateWithoutConceptInput No

ConceptNumericUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where ConceptNumericScalarWhereInput No
data ConceptNumericUpdateManyMutationInput | ConceptNumericUncheckedUpdateManyWithoutConceptInput No

ConceptNumericScalarWhereInput

Name Type Nullable
AND ConceptNumericScalarWhereInput | ConceptNumericScalarWhereInput[] No
OR ConceptNumericScalarWhereInput[] No
NOT ConceptNumericScalarWhereInput | ConceptNumericScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
hiAbsolute FloatFilter | Float No
hiCritical FloatFilter | Float No
hiNormal FloatFilter | Float No
lowAbsolute FloatFilter | Float No
lowCritical FloatFilter | Float No
lowNormal FloatFilter | Float No
units StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


ConceptProposalUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ConceptProposalWhereUniqueInput No
data ConceptProposalUpdateWithoutConceptInput | ConceptProposalUncheckedUpdateWithoutConceptInput No

ConceptProposalUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where ConceptProposalScalarWhereInput No
data ConceptProposalUpdateManyMutationInput | ConceptProposalUncheckedUpdateManyWithoutConceptInput No

ConceptProposalScalarWhereInput

Name Type Nullable
AND ConceptProposalScalarWhereInput | ConceptProposalScalarWhereInput[] No
OR ConceptProposalScalarWhereInput[] No
NOT ConceptProposalScalarWhereInput | ConceptProposalScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
name StringFilter | String No
description StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


ConceptWordUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ConceptWordWhereUniqueInput No
data ConceptWordUpdateWithoutConceptInput | ConceptWordUncheckedUpdateWithoutConceptInput No

ConceptWordUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where ConceptWordScalarWhereInput No
data ConceptWordUpdateManyMutationInput | ConceptWordUncheckedUpdateManyWithoutConceptInput No

ConceptWordScalarWhereInput

Name Type Nullable
AND ConceptWordScalarWhereInput | ConceptWordScalarWhereInput[] No
OR ConceptWordScalarWhereInput[] No
NOT ConceptWordScalarWhereInput | ConceptWordScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
conceptId UuidFilter | String No
word StringFilter | String No
locale StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No


FieldUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where FieldWhereUniqueInput No
data FieldUpdateWithoutConceptInput | FieldUncheckedUpdateWithoutConceptInput No

FieldUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where FieldScalarWhereInput No
data FieldUpdateManyMutationInput | FieldUncheckedUpdateManyWithoutConceptInput No

FieldScalarWhereInput

Name Type Nullable
AND FieldScalarWhereInput | FieldScalarWhereInput[] No
OR FieldScalarWhereInput[] No
NOT FieldScalarWhereInput | FieldScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
fieldType StringFilter | String No
conceptId UuidFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No

ObsUpsertWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ObsWhereUniqueInput No
update ObsUpdateWithoutConceptInput | ObsUncheckedUpdateWithoutConceptInput No
create ObsCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput No

ObsUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where ObsWhereUniqueInput No
data ObsUpdateWithoutConceptInput | ObsUncheckedUpdateWithoutConceptInput No

ObsUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where ObsScalarWhereInput No
data ObsUpdateManyMutationInput | ObsUncheckedUpdateManyWithoutConceptInput No


OrderUpdateWithWhereUniqueWithoutConceptInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutConceptInput | OrderUncheckedUpdateWithoutConceptInput No

OrderUpdateManyWithWhereWithoutConceptInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutConceptInput No

ConceptCreateWithoutAnswerListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutAnswerListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutAnswerListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutAnswerListInput | ConceptUncheckedCreateWithoutAnswerListInput No

ConceptCreateWithoutMetaListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutMetaListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutMetaListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutMetaListInput | ConceptUncheckedCreateWithoutMetaListInput No


ConceptUpdateToOneWithWhereWithoutAnswerListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutAnswerListInput | ConceptUncheckedUpdateWithoutAnswerListInput No

ConceptUpdateWithoutAnswerListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutAnswerListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No


ConceptUpdateToOneWithWhereWithoutMetaListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutMetaListInput | ConceptUncheckedUpdateWithoutMetaListInput No

ConceptUpdateWithoutMetaListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutMetaListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptCreateWithoutConceptClassInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptClassInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptClassInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput No

ConceptCreateManyConceptClassInputEnvelope

Name Type Nullable
data ConceptCreateManyConceptClassInput | ConceptCreateManyConceptClassInput[] No
skipDuplicates Boolean No


ConceptUpdateWithWhereUniqueWithoutConceptClassInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutConceptClassInput | ConceptUncheckedUpdateWithoutConceptClassInput No

ConceptUpdateManyWithWhereWithoutConceptClassInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptClassInput No

ConceptScalarWhereInput

Name Type Nullable
AND ConceptScalarWhereInput | ConceptScalarWhereInput[] No
OR ConceptScalarWhereInput[] No
NOT ConceptScalarWhereInput | ConceptScalarWhereInput[] No
id UuidFilter | String No
uuid StringFilter | String No
name StringFilter | String No
description StringFilter | String No
dataType StringFilter | String No
class StringFilter | String No
isRetired BoolFilter | Boolean No
retiredBy StringFilter | String No
dateRetired DateTimeFilter | DateTime No
retiredReason StringFilter | String No
creator StringFilter | String No
dateCreated DateTimeFilter | DateTime No
lastChangedBy StringFilter | String No
lastChangedDate DateTimeFilter | DateTime No
conceptClassId UuidNullableFilter | String | Null Yes
conceptDatatypeId UuidNullableFilter | String | Null Yes
conceptMapId UuidNullableFilter | String | Null Yes
conceptSetId UuidNullableFilter | String | Null Yes
conceptSourceId UuidNullableFilter | String | Null Yes

ConceptCreateWithoutConceptDatatypeInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptDatatypeInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptDatatypeInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptDatatypeInput | ConceptUncheckedCreateWithoutConceptDatatypeInput No

ConceptCreateManyConceptDatatypeInputEnvelope

Name Type Nullable
data ConceptCreateManyConceptDatatypeInput | ConceptCreateManyConceptDatatypeInput[] No
skipDuplicates Boolean No


ConceptUpdateWithWhereUniqueWithoutConceptDatatypeInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutConceptDatatypeInput | ConceptUncheckedUpdateWithoutConceptDatatypeInput No

ConceptUpdateManyWithWhereWithoutConceptDatatypeInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptDatatypeInput No

ConceptCreateWithoutConceptMapInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptMapInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptMapInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput No

ConceptCreateManyConceptMapInputEnvelope

Name Type Nullable
data ConceptCreateManyConceptMapInput | ConceptCreateManyConceptMapInput[] No
skipDuplicates Boolean No


ConceptUpdateWithWhereUniqueWithoutConceptMapInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutConceptMapInput | ConceptUncheckedUpdateWithoutConceptMapInput No

ConceptUpdateManyWithWhereWithoutConceptMapInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptMapInput No

ConceptCreateWithoutConceptNameListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptNameListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptNameListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptNameListInput | ConceptUncheckedCreateWithoutConceptNameListInput No


ConceptUpdateToOneWithWhereWithoutConceptNameListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutConceptNameListInput | ConceptUncheckedUpdateWithoutConceptNameListInput No

ConceptUpdateWithoutConceptNameListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptNameListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptCreateWithoutConceptNumericListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptNumericListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptNumericListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptNumericListInput | ConceptUncheckedCreateWithoutConceptNumericListInput No


ConceptUpdateToOneWithWhereWithoutConceptNumericListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutConceptNumericListInput | ConceptUncheckedUpdateWithoutConceptNumericListInput No

ConceptUpdateWithoutConceptNumericListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptNumericListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptCreateWithoutConceptProposalListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptProposalListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptProposalListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptProposalListInput | ConceptUncheckedCreateWithoutConceptProposalListInput No


ConceptUpdateToOneWithWhereWithoutConceptProposalListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutConceptProposalListInput | ConceptUncheckedUpdateWithoutConceptProposalListInput No

ConceptUpdateWithoutConceptProposalListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptProposalListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptCreateWithoutConceptSetInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptSetInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptSetInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput No

ConceptCreateManyConceptSetInputEnvelope

Name Type Nullable
data ConceptCreateManyConceptSetInput | ConceptCreateManyConceptSetInput[] No
skipDuplicates Boolean No


ConceptUpdateWithWhereUniqueWithoutConceptSetInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutConceptSetInput | ConceptUncheckedUpdateWithoutConceptSetInput No

ConceptUpdateManyWithWhereWithoutConceptSetInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptSetInput No

ConceptCreateWithoutConceptSourceInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptSourceInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
conceptWordList ConceptWordUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptSourceInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput No

ConceptCreateManyConceptSourceInputEnvelope

Name Type Nullable
data ConceptCreateManyConceptSourceInput | ConceptCreateManyConceptSourceInput[] No
skipDuplicates Boolean No


ConceptUpdateWithWhereUniqueWithoutConceptSourceInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutConceptSourceInput | ConceptUncheckedUpdateWithoutConceptSourceInput No

ConceptUpdateManyWithWhereWithoutConceptSourceInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptSourceInput No

ConceptCreateWithoutConceptWordListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
ConceptClass ConceptClassCreateNestedOneWithoutConceptListInput No
ConceptDatatype ConceptDatatypeCreateNestedOneWithoutConceptListInput No
conceptMap ConceptMapCreateNestedOneWithoutConceptListInput No
conceptSet ConceptSetCreateNestedOneWithoutConceptListInput No
conceptSource ConceptSourceCreateNestedOneWithoutConceptListInput No
answerList ConceptAnswerCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalCreateNestedManyWithoutConceptInput No
fieldList FieldCreateNestedManyWithoutConceptInput No
obsList ObsCreateNestedManyWithoutConceptInput No
orderList OrderCreateNestedManyWithoutConceptInput No

ConceptUncheckedCreateWithoutConceptWordListInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes
answerList ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput No
metaList ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput No
conceptNameList ConceptNameUncheckedCreateNestedManyWithoutConceptInput No
conceptNumericList ConceptNumericUncheckedCreateNestedManyWithoutConceptInput No
conceptProposalList ConceptProposalUncheckedCreateNestedManyWithoutConceptInput No
fieldList FieldUncheckedCreateNestedManyWithoutConceptInput No
obsList ObsUncheckedCreateNestedManyWithoutConceptInput No
orderList OrderUncheckedCreateNestedManyWithoutConceptInput No

ConceptCreateOrConnectWithoutConceptWordListInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutConceptWordListInput | ConceptUncheckedCreateWithoutConceptWordListInput No


ConceptUpdateToOneWithWhereWithoutConceptWordListInput

Name Type Nullable
where ConceptWhereInput No
data ConceptUpdateWithoutConceptWordListInput | ConceptUncheckedUpdateWithoutConceptWordListInput No

ConceptUpdateWithoutConceptWordListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptWordListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

FormResourceCreateWithoutResourceInput

Name Type Nullable
id String No
uuid String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
form FormCreateNestedOneWithoutFormResourceListInput No

FormResourceUncheckedCreateWithoutResourceInput

Name Type Nullable
id String No
uuid String No
formId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceCreateOrConnectWithoutResourceInput

Name Type Nullable
where FormResourceWhereUniqueInput No
create FormResourceCreateWithoutResourceInput | FormResourceUncheckedCreateWithoutResourceInput No

FormResourceCreateManyResourceInputEnvelope

Name Type Nullable
data FormResourceCreateManyResourceInput | FormResourceCreateManyResourceInput[] No
skipDuplicates Boolean No


FormResourceUpdateWithWhereUniqueWithoutResourceInput

Name Type Nullable
where FormResourceWhereUniqueInput No
data FormResourceUpdateWithoutResourceInput | FormResourceUncheckedUpdateWithoutResourceInput No

FormResourceUpdateManyWithWhereWithoutResourceInput

Name Type Nullable
where FormResourceScalarWhereInput No
data FormResourceUpdateManyMutationInput | FormResourceUncheckedUpdateManyWithoutResourceInput No

BlogPostAuthorCreateWithoutBlogPostListInput

Name Type Nullable
id String No
name String No

BlogPostAuthorUncheckedCreateWithoutBlogPostListInput

Name Type Nullable
id String No
name String No

BlogPostAuthorCreateOrConnectWithoutBlogPostListInput

Name Type Nullable
where BlogPostAuthorWhereUniqueInput No
create BlogPostAuthorCreateWithoutBlogPostListInput | BlogPostAuthorUncheckedCreateWithoutBlogPostListInput No

SpaceTimeCoordinatesCreateWithoutBlogPostInput

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float | Null Yes
stopTime Float No
timezone String No
blogPostId String No

SpaceTimeCoordinatesUncheckedCreateWithoutBlogPostInput

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float | Null Yes
stopTime Float No
timezone String No
blogPostId String No

SpaceTimeCoordinatesCreateOrConnectWithoutBlogPostInput

Name Type Nullable
where SpaceTimeCoordinatesWhereUniqueInput No
create SpaceTimeCoordinatesCreateWithoutBlogPostInput | SpaceTimeCoordinatesUncheckedCreateWithoutBlogPostInput No

BlogPostTagArrowCreateWithoutPostInput

Name Type Nullable
id String No
tag BlogPostTagCreateNestedOneWithoutPostArrowListInput No

BlogPostTagArrowUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
tagId String No

BlogPostTagArrowCreateOrConnectWithoutPostInput

Name Type Nullable
where BlogPostTagArrowWhereUniqueInput No
create BlogPostTagArrowCreateWithoutPostInput | BlogPostTagArrowUncheckedCreateWithoutPostInput No

BlogPostTagArrowCreateManyPostInputEnvelope

Name Type Nullable
data BlogPostTagArrowCreateManyPostInput | BlogPostTagArrowCreateManyPostInput[] No
skipDuplicates Boolean No


BlogPostAuthorUpdateToOneWithWhereWithoutBlogPostListInput

Name Type Nullable
where BlogPostAuthorWhereInput No
data BlogPostAuthorUpdateWithoutBlogPostListInput | BlogPostAuthorUncheckedUpdateWithoutBlogPostListInput No

BlogPostAuthorUpdateWithoutBlogPostListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

BlogPostAuthorUncheckedUpdateWithoutBlogPostListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No


SpaceTimeCoordinatesUpdateToOneWithWhereWithoutBlogPostInput

Name Type Nullable
where SpaceTimeCoordinatesWhereInput No
data SpaceTimeCoordinatesUpdateWithoutBlogPostInput | SpaceTimeCoordinatesUncheckedUpdateWithoutBlogPostInput No

SpaceTimeCoordinatesUpdateWithoutBlogPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
startTime Float | FloatFieldUpdateOperationsInput No
pauseTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
stopTime Float | FloatFieldUpdateOperationsInput No
timezone String | StringFieldUpdateOperationsInput No
blogPostId String | StringFieldUpdateOperationsInput No

SpaceTimeCoordinatesUncheckedUpdateWithoutBlogPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
startTime Float | FloatFieldUpdateOperationsInput No
pauseTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
stopTime Float | FloatFieldUpdateOperationsInput No
timezone String | StringFieldUpdateOperationsInput No
blogPostId String | StringFieldUpdateOperationsInput No


BlogPostTagArrowUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where BlogPostTagArrowWhereUniqueInput No
data BlogPostTagArrowUpdateWithoutPostInput | BlogPostTagArrowUncheckedUpdateWithoutPostInput No

BlogPostTagArrowUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where BlogPostTagArrowScalarWhereInput No
data BlogPostTagArrowUpdateManyMutationInput | BlogPostTagArrowUncheckedUpdateManyWithoutPostInput No

BlogPostTagArrowScalarWhereInput

Name Type Nullable
AND BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] No
OR BlogPostTagArrowScalarWhereInput[] No
NOT BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] No
id UuidFilter | String No
postId UuidFilter | String No
tagId UuidFilter | String No

BlogPostTagArrowCreateWithoutTagInput

Name Type Nullable
id String No
post BlogPostCreateNestedOneWithoutTagArrowListInput No

BlogPostTagArrowUncheckedCreateWithoutTagInput

Name Type Nullable
id String No
postId String No

BlogPostTagArrowCreateOrConnectWithoutTagInput

Name Type Nullable
where BlogPostTagArrowWhereUniqueInput No
create BlogPostTagArrowCreateWithoutTagInput | BlogPostTagArrowUncheckedCreateWithoutTagInput No

BlogPostTagArrowCreateManyTagInputEnvelope

Name Type Nullable
data BlogPostTagArrowCreateManyTagInput | BlogPostTagArrowCreateManyTagInput[] No
skipDuplicates Boolean No


BlogPostTagArrowUpdateWithWhereUniqueWithoutTagInput

Name Type Nullable
where BlogPostTagArrowWhereUniqueInput No
data BlogPostTagArrowUpdateWithoutTagInput | BlogPostTagArrowUncheckedUpdateWithoutTagInput No

BlogPostTagArrowUpdateManyWithWhereWithoutTagInput

Name Type Nullable
where BlogPostTagArrowScalarWhereInput No
data BlogPostTagArrowUpdateManyMutationInput | BlogPostTagArrowUncheckedUpdateManyWithoutTagInput No

BlogPostCreateWithoutTagArrowListInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
author BlogPostAuthorCreateNestedOneWithoutBlogPostListInput No
spaceTimeCoordinates SpaceTimeCoordinatesCreateNestedOneWithoutBlogPostInput No

BlogPostUncheckedCreateWithoutTagArrowListInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
authorId String No
spaceTimeCoordinatesId String No

BlogPostCreateOrConnectWithoutTagArrowListInput

Name Type Nullable
where BlogPostWhereUniqueInput No
create BlogPostCreateWithoutTagArrowListInput | BlogPostUncheckedCreateWithoutTagArrowListInput No

BlogPostTagCreateWithoutPostArrowListInput

Name Type Nullable
id String No
name String No
descriptor String | Null Yes

BlogPostTagUncheckedCreateWithoutPostArrowListInput

Name Type Nullable
id String No
name String No
descriptor String | Null Yes

BlogPostTagCreateOrConnectWithoutPostArrowListInput

Name Type Nullable
where BlogPostTagWhereUniqueInput No
create BlogPostTagCreateWithoutPostArrowListInput | BlogPostTagUncheckedCreateWithoutPostArrowListInput No


BlogPostUpdateToOneWithWhereWithoutTagArrowListInput

Name Type Nullable
where BlogPostWhereInput No
data BlogPostUpdateWithoutTagArrowListInput | BlogPostUncheckedUpdateWithoutTagArrowListInput No

BlogPostUpdateWithoutTagArrowListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
author BlogPostAuthorUpdateOneRequiredWithoutBlogPostListNestedInput No
spaceTimeCoordinates SpaceTimeCoordinatesUpdateOneRequiredWithoutBlogPostNestedInput No

BlogPostUncheckedUpdateWithoutTagArrowListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
authorId String | StringFieldUpdateOperationsInput No
spaceTimeCoordinatesId String | StringFieldUpdateOperationsInput No


BlogPostTagUpdateToOneWithWhereWithoutPostArrowListInput

Name Type Nullable
where BlogPostTagWhereInput No
data BlogPostTagUpdateWithoutPostArrowListInput | BlogPostTagUncheckedUpdateWithoutPostArrowListInput No

BlogPostTagUpdateWithoutPostArrowListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
descriptor String | NullableStringFieldUpdateOperationsInput | Null Yes

BlogPostTagUncheckedUpdateWithoutPostArrowListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
descriptor String | NullableStringFieldUpdateOperationsInput | Null Yes

BlogPostCreateWithoutAuthorInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
spaceTimeCoordinates SpaceTimeCoordinatesCreateNestedOneWithoutBlogPostInput No
tagArrowList BlogPostTagArrowCreateNestedManyWithoutPostInput No

BlogPostUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
spaceTimeCoordinatesId String No
tagArrowList BlogPostTagArrowUncheckedCreateNestedManyWithoutPostInput No

BlogPostCreateOrConnectWithoutAuthorInput

Name Type Nullable
where BlogPostWhereUniqueInput No
create BlogPostCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput No

BlogPostCreateManyAuthorInputEnvelope

Name Type Nullable
data BlogPostCreateManyAuthorInput | BlogPostCreateManyAuthorInput[] No
skipDuplicates Boolean No


BlogPostUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where BlogPostWhereUniqueInput No
data BlogPostUpdateWithoutAuthorInput | BlogPostUncheckedUpdateWithoutAuthorInput No

BlogPostUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where BlogPostScalarWhereInput No
data BlogPostUpdateManyMutationInput | BlogPostUncheckedUpdateManyWithoutAuthorInput No

BlogPostScalarWhereInput

Name Type Nullable
AND BlogPostScalarWhereInput | BlogPostScalarWhereInput[] No
OR BlogPostScalarWhereInput[] No
NOT BlogPostScalarWhereInput | BlogPostScalarWhereInput[] No
id UuidFilter | String No
title StringFilter | String No
content StringFilter | String No
context JsonFilter No
authorId UuidFilter | String No
spaceTimeCoordinatesId UuidFilter | String No

BlogPostCreateWithoutSpaceTimeCoordinatesInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
author BlogPostAuthorCreateNestedOneWithoutBlogPostListInput No
tagArrowList BlogPostTagArrowCreateNestedManyWithoutPostInput No

BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
authorId String No
tagArrowList BlogPostTagArrowUncheckedCreateNestedManyWithoutPostInput No

BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput

Name Type Nullable
where BlogPostWhereUniqueInput No
create BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput No


BlogPostUpdateToOneWithWhereWithoutSpaceTimeCoordinatesInput

Name Type Nullable
where BlogPostWhereInput No
data BlogPostUpdateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedUpdateWithoutSpaceTimeCoordinatesInput No

BlogPostUpdateWithoutSpaceTimeCoordinatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
author BlogPostAuthorUpdateOneRequiredWithoutBlogPostListNestedInput No
tagArrowList BlogPostTagArrowUpdateManyWithoutPostNestedInput No

BlogPostUncheckedUpdateWithoutSpaceTimeCoordinatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
authorId String | StringFieldUpdateOperationsInput No
tagArrowList BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput No

BudgetCreateWithoutEntryListInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
userList BudgetBudUserCreateNestedManyWithoutBudgetInput No
report ReportCreateNestedOneWithoutBudgetInput No

BudgetUncheckedCreateWithoutEntryListInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
userList BudgetBudUserUncheckedCreateNestedManyWithoutBudgetInput No
report ReportUncheckedCreateNestedOneWithoutBudgetInput No

BudgetCreateOrConnectWithoutEntryListInput

Name Type Nullable
where BudgetWhereUniqueInput No
create BudgetCreateWithoutEntryListInput | BudgetUncheckedCreateWithoutEntryListInput No

BudgetServiceCreateWithoutEntryListInput

Name Type Nullable
id String No
description String No
category String No
metadata JsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No

BudgetServiceUncheckedCreateWithoutEntryListInput

Name Type Nullable
id String No
description String No
category String No
metadata JsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No

BudgetServiceCreateOrConnectWithoutEntryListInput

Name Type Nullable
where BudgetServiceWhereUniqueInput No
create BudgetServiceCreateWithoutEntryListInput | BudgetServiceUncheckedCreateWithoutEntryListInput No


BudgetUpdateToOneWithWhereWithoutEntryListInput

Name Type Nullable
where BudgetWhereInput No
data BudgetUpdateWithoutEntryListInput | BudgetUncheckedUpdateWithoutEntryListInput No

BudgetUpdateWithoutEntryListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes
userList BudgetBudUserUpdateManyWithoutBudgetNestedInput No
report ReportUpdateOneWithoutBudgetNestedInput No

BudgetUncheckedUpdateWithoutEntryListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes
userList BudgetBudUserUncheckedUpdateManyWithoutBudgetNestedInput No
report ReportUncheckedUpdateOneWithoutBudgetNestedInput No


BudgetServiceUpdateToOneWithWhereWithoutEntryListInput

Name Type Nullable
where BudgetServiceWhereInput No
data BudgetServiceUpdateWithoutEntryListInput | BudgetServiceUncheckedUpdateWithoutEntryListInput No

BudgetServiceUpdateWithoutEntryListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetServiceUncheckedUpdateWithoutEntryListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetEntryCreateWithoutServiceInput

Name Type Nullable
id String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budget BudgetCreateNestedOneWithoutEntryListInput No

BudgetEntryUncheckedCreateWithoutServiceInput

Name Type Nullable
id String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budgetId String No

BudgetEntryCreateOrConnectWithoutServiceInput

Name Type Nullable
where BudgetEntryWhereUniqueInput No
create BudgetEntryCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput No

BudgetEntryCreateManyServiceInputEnvelope

Name Type Nullable
data BudgetEntryCreateManyServiceInput | BudgetEntryCreateManyServiceInput[] No
skipDuplicates Boolean No


BudgetEntryUpdateWithWhereUniqueWithoutServiceInput

Name Type Nullable
where BudgetEntryWhereUniqueInput No
data BudgetEntryUpdateWithoutServiceInput | BudgetEntryUncheckedUpdateWithoutServiceInput No

BudgetEntryUpdateManyWithWhereWithoutServiceInput

Name Type Nullable
where BudgetEntryScalarWhereInput No
data BudgetEntryUpdateManyMutationInput | BudgetEntryUncheckedUpdateManyWithoutServiceInput No

BudgetEntryScalarWhereInput

Name Type Nullable
AND BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] No
OR BudgetEntryScalarWhereInput[] No
NOT BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] No
id UuidFilter | String No
serviceId UuidFilter | String No
cost FloatFilter | Float No
discount FloatFilter | Float No
promotion FloatFilter | Float No
subtotal FloatFilter | Float No
percentChange FloatFilter | Float No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
budgetId UuidFilter | String No

BudgetBudUserCreateWithoutBudgetInput

Name Type Nullable
id String No
role String No
ability String No
category String No
user BudUserCreateNestedOneWithoutBudgetListInput No

BudgetBudUserUncheckedCreateWithoutBudgetInput

Name Type Nullable
id String No
userId String No
role String No
ability String No
category String No

BudgetBudUserCreateOrConnectWithoutBudgetInput

Name Type Nullable
where BudgetBudUserWhereUniqueInput No
create BudgetBudUserCreateWithoutBudgetInput | BudgetBudUserUncheckedCreateWithoutBudgetInput No

BudgetBudUserCreateManyBudgetInputEnvelope

Name Type Nullable
data BudgetBudUserCreateManyBudgetInput | BudgetBudUserCreateManyBudgetInput[] No
skipDuplicates Boolean No

BudgetEntryCreateWithoutBudgetInput

Name Type Nullable
id String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
service BudgetServiceCreateNestedOneWithoutEntryListInput No

BudgetEntryUncheckedCreateWithoutBudgetInput

Name Type Nullable
id String No
serviceId String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No

BudgetEntryCreateOrConnectWithoutBudgetInput

Name Type Nullable
where BudgetEntryWhereUniqueInput No
create BudgetEntryCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput No

BudgetEntryCreateManyBudgetInputEnvelope

Name Type Nullable
data BudgetEntryCreateManyBudgetInput | BudgetEntryCreateManyBudgetInput[] No
skipDuplicates Boolean No

ReportCreateWithoutBudgetInput

Name Type Nullable
id String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No

ReportUncheckedCreateWithoutBudgetInput

Name Type Nullable
id String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No

ReportCreateOrConnectWithoutBudgetInput

Name Type Nullable
where ReportWhereUniqueInput No
create ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput No


BudgetBudUserUpdateWithWhereUniqueWithoutBudgetInput

Name Type Nullable
where BudgetBudUserWhereUniqueInput No
data BudgetBudUserUpdateWithoutBudgetInput | BudgetBudUserUncheckedUpdateWithoutBudgetInput No

BudgetBudUserUpdateManyWithWhereWithoutBudgetInput

Name Type Nullable
where BudgetBudUserScalarWhereInput No
data BudgetBudUserUpdateManyMutationInput | BudgetBudUserUncheckedUpdateManyWithoutBudgetInput No

BudgetBudUserScalarWhereInput

Name Type Nullable
AND BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] No
OR BudgetBudUserScalarWhereInput[] No
NOT BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] No
id UuidFilter | String No
userId UuidFilter | String No
budgetId UuidFilter | String No
role StringFilter | String No
ability StringFilter | String No
category StringFilter | String No


BudgetEntryUpdateWithWhereUniqueWithoutBudgetInput

Name Type Nullable
where BudgetEntryWhereUniqueInput No
data BudgetEntryUpdateWithoutBudgetInput | BudgetEntryUncheckedUpdateWithoutBudgetInput No

BudgetEntryUpdateManyWithWhereWithoutBudgetInput

Name Type Nullable
where BudgetEntryScalarWhereInput No
data BudgetEntryUpdateManyMutationInput | BudgetEntryUncheckedUpdateManyWithoutBudgetInput No


ReportUpdateToOneWithWhereWithoutBudgetInput

Name Type Nullable
where ReportWhereInput No
data ReportUpdateWithoutBudgetInput | ReportUncheckedUpdateWithoutBudgetInput No

ReportUpdateWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
totalCost Float | FloatFieldUpdateOperationsInput No
totalDiscount Float | FloatFieldUpdateOperationsInput No
totalPromotion Float | FloatFieldUpdateOperationsInput No
totalSubtotal Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

ReportUncheckedUpdateWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
totalCost Float | FloatFieldUpdateOperationsInput No
totalDiscount Float | FloatFieldUpdateOperationsInput No
totalPromotion Float | FloatFieldUpdateOperationsInput No
totalSubtotal Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetCreateWithoutReportInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
userList BudgetBudUserCreateNestedManyWithoutBudgetInput No
entryList BudgetEntryCreateNestedManyWithoutBudgetInput No

BudgetUncheckedCreateWithoutReportInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
userList BudgetBudUserUncheckedCreateNestedManyWithoutBudgetInput No
entryList BudgetEntryUncheckedCreateNestedManyWithoutBudgetInput No

BudgetCreateOrConnectWithoutReportInput

Name Type Nullable
where BudgetWhereUniqueInput No
create BudgetCreateWithoutReportInput | BudgetUncheckedCreateWithoutReportInput No


BudgetUpdateToOneWithWhereWithoutReportInput

Name Type Nullable
where BudgetWhereInput No
data BudgetUpdateWithoutReportInput | BudgetUncheckedUpdateWithoutReportInput No

BudgetUpdateWithoutReportInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes
userList BudgetBudUserUpdateManyWithoutBudgetNestedInput No
entryList BudgetEntryUpdateManyWithoutBudgetNestedInput No

BudgetUncheckedUpdateWithoutReportInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes
userList BudgetBudUserUncheckedUpdateManyWithoutBudgetNestedInput No
entryList BudgetEntryUncheckedUpdateManyWithoutBudgetNestedInput No

BudEventCreateWithoutBudUserInput

Name Type Nullable
id String No
type String No
description String No
categoryList BudEventCreatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime No

BudEventUncheckedCreateWithoutBudUserInput

Name Type Nullable
id String No
type String No
description String No
categoryList BudEventCreatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime No

BudEventCreateOrConnectWithoutBudUserInput

Name Type Nullable
where BudEventWhereUniqueInput No
create BudEventCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput No

BudEventCreateManyBudUserInputEnvelope

Name Type Nullable
data BudEventCreateManyBudUserInput | BudEventCreateManyBudUserInput[] No
skipDuplicates Boolean No

BudgetBudUserCreateWithoutUserInput

Name Type Nullable
id String No
role String No
ability String No
category String No
budget BudgetCreateNestedOneWithoutUserListInput No

BudgetBudUserUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
budgetId String No
role String No
ability String No
category String No

BudgetBudUserCreateOrConnectWithoutUserInput

Name Type Nullable
where BudgetBudUserWhereUniqueInput No
create BudgetBudUserCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput No

BudgetBudUserCreateManyUserInputEnvelope

Name Type Nullable
data BudgetBudUserCreateManyUserInput | BudgetBudUserCreateManyUserInput[] No
skipDuplicates Boolean No


BudEventUpdateWithWhereUniqueWithoutBudUserInput

Name Type Nullable
where BudEventWhereUniqueInput No
data BudEventUpdateWithoutBudUserInput | BudEventUncheckedUpdateWithoutBudUserInput No

BudEventUpdateManyWithWhereWithoutBudUserInput

Name Type Nullable
where BudEventScalarWhereInput No
data BudEventUpdateManyMutationInput | BudEventUncheckedUpdateManyWithoutBudUserInput No

BudEventScalarWhereInput

Name Type Nullable
AND BudEventScalarWhereInput | BudEventScalarWhereInput[] No
OR BudEventScalarWhereInput[] No
NOT BudEventScalarWhereInput | BudEventScalarWhereInput[] No
id UuidFilter | String No
type StringFilter | String No
description StringFilter | String No
categoryList StringNullableListFilter No
metadata JsonFilter No
budUserId UuidFilter | String No
createdAt DateTimeFilter | DateTime No


BudgetBudUserUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where BudgetBudUserWhereUniqueInput No
data BudgetBudUserUpdateWithoutUserInput | BudgetBudUserUncheckedUpdateWithoutUserInput No

BudgetBudUserUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where BudgetBudUserScalarWhereInput No
data BudgetBudUserUpdateManyMutationInput | BudgetBudUserUncheckedUpdateManyWithoutUserInput No

BudgetCreateWithoutUserListInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
entryList BudgetEntryCreateNestedManyWithoutBudgetInput No
report ReportCreateNestedOneWithoutBudgetInput No

BudgetUncheckedCreateWithoutUserListInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String | Null Yes
entryList BudgetEntryUncheckedCreateNestedManyWithoutBudgetInput No
report ReportUncheckedCreateNestedOneWithoutBudgetInput No

BudgetCreateOrConnectWithoutUserListInput

Name Type Nullable
where BudgetWhereUniqueInput No
create BudgetCreateWithoutUserListInput | BudgetUncheckedCreateWithoutUserListInput No

BudUserCreateWithoutBudgetListInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No
eventList BudEventCreateNestedManyWithoutBudUserInput No

BudUserUncheckedCreateWithoutBudgetListInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No
eventList BudEventUncheckedCreateNestedManyWithoutBudUserInput No

BudUserCreateOrConnectWithoutBudgetListInput

Name Type Nullable
where BudUserWhereUniqueInput No
create BudUserCreateWithoutBudgetListInput | BudUserUncheckedCreateWithoutBudgetListInput No


BudgetUpdateToOneWithWhereWithoutUserListInput

Name Type Nullable
where BudgetWhereInput No
data BudgetUpdateWithoutUserListInput | BudgetUncheckedUpdateWithoutUserListInput No

BudgetUpdateWithoutUserListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes
entryList BudgetEntryUpdateManyWithoutBudgetNestedInput No
report ReportUpdateOneWithoutBudgetNestedInput No

BudgetUncheckedUpdateWithoutUserListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fiscalYear Int | IntFieldUpdateOperationsInput No
reportId String | NullableStringFieldUpdateOperationsInput | Null Yes
entryList BudgetEntryUncheckedUpdateManyWithoutBudgetNestedInput No
report ReportUncheckedUpdateOneWithoutBudgetNestedInput No


BudUserUpdateToOneWithWhereWithoutBudgetListInput

Name Type Nullable
where BudUserWhereInput No
data BudUserUpdateWithoutBudgetListInput | BudUserUncheckedUpdateWithoutBudgetListInput No

BudUserUpdateWithoutBudgetListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
eventList BudEventUpdateManyWithoutBudUserNestedInput No

BudUserUncheckedUpdateWithoutBudgetListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
eventList BudEventUncheckedUpdateManyWithoutBudUserNestedInput No

BudUserCreateWithoutEventListInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No
budgetList BudgetBudUserCreateNestedManyWithoutUserInput No

BudUserUncheckedCreateWithoutEventListInput

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No
budgetList BudgetBudUserUncheckedCreateNestedManyWithoutUserInput No

BudUserCreateOrConnectWithoutEventListInput

Name Type Nullable
where BudUserWhereUniqueInput No
create BudUserCreateWithoutEventListInput | BudUserUncheckedCreateWithoutEventListInput No


BudUserUpdateToOneWithWhereWithoutEventListInput

Name Type Nullable
where BudUserWhereInput No
data BudUserUpdateWithoutEventListInput | BudUserUncheckedUpdateWithoutEventListInput No

BudUserUpdateWithoutEventListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budgetList BudgetBudUserUpdateManyWithoutUserNestedInput No

BudUserUncheckedUpdateWithoutEventListInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budgetList BudgetBudUserUncheckedUpdateManyWithoutUserNestedInput No

PrincipalCreateManyCreatorInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

PrincipalCreateManyUpdaterInput

Name Type Nullable
id String No
username String No
firstName String | Null Yes
lastName String No
password String | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
payerType DiscountType No
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

PaymentCreateManyCreatorInput

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

PaymentCreateManyUpdaterInput

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

AppointmentCreateManyCreatorInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

AppointmentCreateManyUpdaterInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

EquipmentCreateManyCreatorInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

EquipmentCreateManyUpdaterInput

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

PatientCreateManyCreatorInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

PatientCreateManyUpdaterInput

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime | Null Yes
phoneCode Int | Null Yes
phoneNumber String | Null Yes
image String | Null Yes
streetName String | Null Yes
city String | Null Yes
areaCode String | Null Yes
country Country No
email String | Null Yes
emailVerified DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

ServiceCreateManyCreatorInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
updatedBy String | Null Yes

ServiceCreateManyUpdaterInput

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes

AccountCreateManyUserInput

Name Type Nullable
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
createdAt DateTime No
updatedAt DateTime No

AuthenticatorCreateManyUserInput

Name Type Nullable
credentialID String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String | Null Yes

PaymentCreateManyReceiverInput

Name Type Nullable
id String No
payerId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

SessionCreateManyUserInput

Name Type Nullable
sessionToken String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

PrincipalUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updater PrincipalUpdateOneWithoutUpdatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateManyWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PrincipalUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedPrincipalsNestedInput No
createdPrincipals PrincipalUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUpdateManyWithoutUpdaterNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUpdateManyWithoutReceiverNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdPrincipals PrincipalUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPrincipals PrincipalUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPayments PaymentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPayments PaymentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdAppointments AppointmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedAppointments AppointmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdEquipments EquipmentUncheckedUpdateManyWithoutCreatorNestedInput No
updatedEquipments EquipmentUncheckedUpdateManyWithoutUpdaterNestedInput No
createdPatients PatientUncheckedUpdateManyWithoutCreatorNestedInput No
updatedPatients PatientUncheckedUpdateManyWithoutUpdaterNestedInput No
createdServices ServiceUncheckedUpdateManyWithoutCreatorNestedInput No
updatedServices ServiceUncheckedUpdateManyWithoutUpdaterNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
authenticator AuthenticatorUncheckedUpdateManyWithoutUserNestedInput No
receivedPaymentList PaymentUncheckedUpdateManyWithoutReceiverNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No

PrincipalUncheckedUpdateManyWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
username String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
payerType DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes


PaymentUncheckedUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PaymentUncheckedUpdateManyWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes


PaymentUncheckedUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PaymentUncheckedUpdateManyWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
appointmentType AppointmentTypeUpdateOneWithoutAppointmentListNestedInput No
location LocationUpdateOneWithoutAppointmentListNestedInput No
patient PatientUpdateOneRequiredWithoutAppointmentListNestedInput No
provider ProviderUpdateOneWithoutAppointmentListNestedInput No
updater PrincipalUpdateOneWithoutUpdatedAppointmentsNestedInput No

AppointmentUncheckedUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUncheckedUpdateManyWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
appointmentType AppointmentTypeUpdateOneWithoutAppointmentListNestedInput No
location LocationUpdateOneWithoutAppointmentListNestedInput No
patient PatientUpdateOneRequiredWithoutAppointmentListNestedInput No
provider ProviderUpdateOneWithoutAppointmentListNestedInput No
creator PrincipalUpdateOneWithoutCreatedAppointmentsNestedInput No

AppointmentUncheckedUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUncheckedUpdateManyWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EquipmentUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updater PrincipalUpdateOneWithoutUpdatedEquipmentsNestedInput No

EquipmentUncheckedUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EquipmentUncheckedUpdateManyWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EquipmentUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedEquipmentsNestedInput No

EquipmentUncheckedUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EquipmentUncheckedUpdateManyWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PatientUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
paymentList PaymentUpdateManyWithoutPayerNestedInput No
updater PrincipalUpdateOneWithoutUpdatedPatientsNestedInput No
appointmentList AppointmentUpdateManyWithoutPatientNestedInput No
encounterList EncounterUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentList PaymentUncheckedUpdateManyWithoutPayerNestedInput No
appointmentList AppointmentUncheckedUpdateManyWithoutPatientNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateManyWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PatientUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
paymentList PaymentUpdateManyWithoutPayerNestedInput No
creator PrincipalUpdateOneWithoutCreatedPatientsNestedInput No
appointmentList AppointmentUpdateManyWithoutPatientNestedInput No
encounterList EncounterUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentList PaymentUncheckedUpdateManyWithoutPayerNestedInput No
appointmentList AppointmentUncheckedUpdateManyWithoutPatientNestedInput No
encounterList EncounterUncheckedUpdateManyWithoutPatientNestedInput No

PatientUncheckedUpdateManyWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
gender Gender | EnumGenderFieldUpdateOperationsInput No
birthdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
phoneCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
phoneNumber String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
streetName String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
areaCode String | NullableStringFieldUpdateOperationsInput | Null Yes
country Country | EnumCountryFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ServiceUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updater PrincipalUpdateOneWithoutUpdatedServicesNestedInput No

ServiceUncheckedUpdateWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ServiceUncheckedUpdateManyWithoutCreatorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ServiceUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
creator PrincipalUpdateOneWithoutCreatedServicesNestedInput No

ServiceUncheckedUpdateWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

ServiceUncheckedUpdateManyWithoutUpdaterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
price Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUpdateWithoutUserInput

Name Type Nullable
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AccountUncheckedUpdateWithoutUserInput

Name Type Nullable
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AccountUncheckedUpdateManyWithoutUserInput

Name Type Nullable
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AuthenticatorUpdateWithoutUserInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes

AuthenticatorUncheckedUpdateWithoutUserInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes

AuthenticatorUncheckedUpdateManyWithoutUserInput

Name Type Nullable
credentialID String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
credentialPublicKey String | StringFieldUpdateOperationsInput No
counter Int | IntFieldUpdateOperationsInput No
credentialDeviceType String | StringFieldUpdateOperationsInput No
credentialBackedUp Boolean | BoolFieldUpdateOperationsInput No
transports String | NullableStringFieldUpdateOperationsInput | Null Yes


PaymentUncheckedUpdateWithoutReceiverInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PaymentUncheckedUpdateManyWithoutReceiverInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
payerId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionUpdateWithoutUserInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateWithoutUserInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyWithoutUserInput

Name Type Nullable
sessionToken String | StringFieldUpdateOperationsInput No
expiresAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

AppointmentCreateManyAppointmentTypeInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
patientId String No
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentUpdateWithoutAppointmentTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
location LocationUpdateOneWithoutAppointmentListNestedInput No
patient PatientUpdateOneRequiredWithoutAppointmentListNestedInput No
provider ProviderUpdateOneWithoutAppointmentListNestedInput No
creator PrincipalUpdateOneWithoutCreatedAppointmentsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedAppointmentsNestedInput No

AppointmentUncheckedUpdateWithoutAppointmentTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUncheckedUpdateManyWithoutAppointmentTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentCreateManyLocationInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

EncounterCreateManyLocationInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

AppointmentUpdateWithoutLocationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
appointmentType AppointmentTypeUpdateOneWithoutAppointmentListNestedInput No
patient PatientUpdateOneRequiredWithoutAppointmentListNestedInput No
provider ProviderUpdateOneWithoutAppointmentListNestedInput No
creator PrincipalUpdateOneWithoutCreatedAppointmentsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedAppointmentsNestedInput No

AppointmentUncheckedUpdateWithoutLocationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUncheckedUpdateManyWithoutLocationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EncounterUpdateWithoutLocationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutLocationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateManyWithoutLocationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

PaymentCreateManyPayerInput

Name Type Nullable
id String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

AppointmentCreateManyPatientInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
locationId String | Null Yes
providerId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

EncounterCreateManyPatientInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No


PaymentUncheckedUpdateWithoutPayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

PaymentUncheckedUpdateManyWithoutPayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
receiverId String | StringFieldUpdateOperationsInput No
paymentMethod PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
totalPayableAmount Int | IntFieldUpdateOperationsInput No
discountApplied Int | IntFieldUpdateOperationsInput No
paidAmount Int | IntFieldUpdateOperationsInput No
reasonForVisit String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUpdateWithoutPatientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
appointmentType AppointmentTypeUpdateOneWithoutAppointmentListNestedInput No
location LocationUpdateOneWithoutAppointmentListNestedInput No
provider ProviderUpdateOneWithoutAppointmentListNestedInput No
creator PrincipalUpdateOneWithoutCreatedAppointmentsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedAppointmentsNestedInput No

AppointmentUncheckedUpdateWithoutPatientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUncheckedUpdateManyWithoutPatientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
providerId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EncounterUpdateWithoutPatientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutPatientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateManyWithoutPatientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

AppointmentCreateManyProviderInput

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay | Null Yes
endTime TimeOfDay | Null Yes
voided Boolean | Null Yes
voidedBy String | Null Yes
dateVoided DateTime | Null Yes
voidReason String | Null Yes
appointmentTypeId String | Null Yes
patientId String No
locationId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
createdBy String | Null Yes
updatedBy String | Null Yes

EncounterCreateManyProviderInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

AppointmentUpdateWithoutProviderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
appointmentType AppointmentTypeUpdateOneWithoutAppointmentListNestedInput No
location LocationUpdateOneWithoutAppointmentListNestedInput No
patient PatientUpdateOneRequiredWithoutAppointmentListNestedInput No
creator PrincipalUpdateOneWithoutCreatedAppointmentsNestedInput No
updater PrincipalUpdateOneWithoutUpdatedAppointmentsNestedInput No

AppointmentUncheckedUpdateWithoutProviderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

AppointmentUncheckedUpdateManyWithoutProviderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
startTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
endTime TimeOfDay | NullableEnumTimeOfDayFieldUpdateOperationsInput | Null Yes
voided Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
voidedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
dateVoided DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
voidReason String | NullableStringFieldUpdateOperationsInput | Null Yes
appointmentTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
patientId String | StringFieldUpdateOperationsInput No
locationId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedBy String | NullableStringFieldUpdateOperationsInput | Null Yes

EncounterUpdateWithoutProviderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutProviderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateManyWithoutProviderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

EncounterCreateManyFormInput

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormEncounterCreateManyFormInput

Name Type Nullable
id String No
uuid String No
encounterId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceCreateManyFormInput

Name Type Nullable
id String No
uuid String No
resourceId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormSubmissionCreateManyFormInput

Name Type Nullable
id String No
uuid String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterType EncounterTypeUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateManyWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterTypeId String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormEncounterUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounter EncounterUpdateOneRequiredWithoutFormEncounterListNestedInput No

FormEncounterUncheckedUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormEncounterUncheckedUpdateManyWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormResourceUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
resource ResourceUpdateOneRequiredWithoutFormResourceListNestedInput No

FormResourceUncheckedUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
resourceId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormResourceUncheckedUpdateManyWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
resourceId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormSubmissionUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUpdateManyWithoutFormSubmissionNestedInput No
encounter EncounterUpdateOneRequiredWithoutFormSubmissionListNestedInput No

FormSubmissionUncheckedUpdateWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput No

FormSubmissionUncheckedUpdateManyWithoutFormInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerCreateManyFormSubmissionInput

Name Type Nullable
id String No
uuid String No
fieldId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerUpdateWithoutFormSubmissionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
field FieldUpdateOneRequiredWithoutFieldAnswerListNestedInput No

FieldAnswerUncheckedUpdateWithoutFormSubmissionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
fieldId String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerUncheckedUpdateManyWithoutFormSubmissionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
fieldId String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerCreateManyFieldInput

Name Type Nullable
id String No
uuid String No
formSubmissionId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionCreateManyFieldInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormCreateManyFieldInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerUpdateWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formSubmission FormSubmissionUpdateOneRequiredWithoutFieldAnswerListNestedInput No

FieldAnswerUncheckedUpdateWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formSubmissionId String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldAnswerUncheckedUpdateManyWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formSubmissionId String | StringFieldUpdateOperationsInput No
value String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldOptionUpdateWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldOptionUncheckedUpdateWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldOptionUncheckedUpdateManyWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormUpdateWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUpdateManyWithoutFormNestedInput No
formEncounterList FormEncounterUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounterList EncounterUncheckedUpdateManyWithoutFormNestedInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutFormNestedInput No
formResourceList FormResourceUncheckedUpdateManyWithoutFormNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutFormNestedInput No

FormUncheckedUpdateManyWithoutFieldInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
retired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormEncounterCreateManyEncounterInput

Name Type Nullable
id String No
uuid String No
formId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormSubmissionCreateManyEncounterInput

Name Type Nullable
id String No
uuid String No
formId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsCreateManyEncounterInput

Name Type Nullable
id String No
uuid String No
conceptId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderCreateManyEncounterInput

Name Type Nullable
id String No
uuid String No
conceptId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

FormEncounterUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
form FormUpdateOneRequiredWithoutFormEncounterListNestedInput No

FormEncounterUncheckedUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormEncounterUncheckedUpdateManyWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormSubmissionUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUpdateManyWithoutFormSubmissionNestedInput No
form FormUpdateOneRequiredWithoutFormSubmissionListNestedInput No

FormSubmissionUncheckedUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput No

FormSubmissionUncheckedUpdateManyWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
submissionDate DateTime | DateTimeFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutObsListNestedInput No

ObsUncheckedUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsUncheckedUpdateManyWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutOrderListNestedInput No
OrderFrequency OrderFrequencyUpdateOneWithoutOrderListNestedInput No
OrderRoute OrderRouteUpdateOneWithoutOrderListNestedInput No
OrderType OrderTypeUpdateOneWithoutOrderListNestedInput No
OrderUnit OrderUnitUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderUncheckedUpdateManyWithoutEncounterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

EncounterCreateManyEncounterTypeInput

Name Type Nullable
id String No
uuid String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterUpdateWithoutEncounterTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
form FormUpdateOneRequiredWithoutEncounterListNestedInput No
location LocationUpdateOneRequiredWithoutEncounterListNestedInput No
patient PatientUpdateOneRequiredWithoutEncounterListNestedInput No
provider ProviderUpdateOneRequiredWithoutEncounterListNestedInput No
formEncounterList FormEncounterUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUpdateManyWithoutEncounterNestedInput No
obsList ObsUpdateManyWithoutEncounterNestedInput No
orderList OrderUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateWithoutEncounterTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
formEncounterList FormEncounterUncheckedUpdateManyWithoutEncounterNestedInput No
formSubmissionList FormSubmissionUncheckedUpdateManyWithoutEncounterNestedInput No
obsList ObsUncheckedUpdateManyWithoutEncounterNestedInput No
orderList OrderUncheckedUpdateManyWithoutEncounterNestedInput No

EncounterUncheckedUpdateManyWithoutEncounterTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
patientId String | StringFieldUpdateOperationsInput No
locationId String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
providerId String | StringFieldUpdateOperationsInput No
startDatetime DateTime | DateTimeFieldUpdateOperationsInput No
endDatetime DateTime | DateTimeFieldUpdateOperationsInput No
voided Boolean | BoolFieldUpdateOperationsInput No
voidedBy String | StringFieldUpdateOperationsInput No
dateVoided DateTime | DateTimeFieldUpdateOperationsInput No
voidReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderCreateManyOrderFrequencyInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderUpdateWithoutOrderFrequencyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutOrderListNestedInput No
encounter EncounterUpdateOneRequiredWithoutOrderListNestedInput No
OrderRoute OrderRouteUpdateOneWithoutOrderListNestedInput No
OrderType OrderTypeUpdateOneWithoutOrderListNestedInput No
OrderUnit OrderUnitUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateWithoutOrderFrequencyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderUncheckedUpdateManyWithoutOrderFrequencyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderCreateManyOrderRouteInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

OrderUpdateWithoutOrderRouteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutOrderListNestedInput No
encounter EncounterUpdateOneRequiredWithoutOrderListNestedInput No
OrderFrequency OrderFrequencyUpdateOneWithoutOrderListNestedInput No
OrderType OrderTypeUpdateOneWithoutOrderListNestedInput No
OrderUnit OrderUnitUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateWithoutOrderRouteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderUncheckedUpdateManyWithoutOrderRouteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderCreateManyOrderTypeInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderUnitId String | Null Yes

OrderUpdateWithoutOrderTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutOrderListNestedInput No
encounter EncounterUpdateOneRequiredWithoutOrderListNestedInput No
OrderFrequency OrderFrequencyUpdateOneWithoutOrderListNestedInput No
OrderRoute OrderRouteUpdateOneWithoutOrderListNestedInput No
OrderUnit OrderUnitUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateWithoutOrderTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderUncheckedUpdateManyWithoutOrderTypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderCreateManyOrderUnitInput

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes

OrderUpdateWithoutOrderUnitInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutOrderListNestedInput No
encounter EncounterUpdateOneRequiredWithoutOrderListNestedInput No
OrderFrequency OrderFrequencyUpdateOneWithoutOrderListNestedInput No
OrderRoute OrderRouteUpdateOneWithoutOrderListNestedInput No
OrderType OrderTypeUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateWithoutOrderUnitInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderUncheckedUpdateManyWithoutOrderUnitInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptAnswerCreateManyAnswerConceptInput

Name Type Nullable
id String No
uuid String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptAnswerCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
answerConceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
encounterId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderCreateManyConceptInput

Name Type Nullable
id String No
uuid String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String | Null Yes
orderRouteId String | Null Yes
orderTypeId String | Null Yes
orderUnitId String | Null Yes

ConceptAnswerUpdateWithoutAnswerConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
concept ConceptUpdateOneRequiredWithoutMetaListNestedInput No

ConceptAnswerUncheckedUpdateWithoutAnswerConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
conceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptAnswerUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
answerConcept ConceptUpdateOneRequiredWithoutAnswerListNestedInput No

ConceptAnswerUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
answerConceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptAnswerUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
answerConceptId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNameUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNameUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNameUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNumericUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNumericUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptNumericUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
hiAbsolute Float | FloatFieldUpdateOperationsInput No
hiCritical Float | FloatFieldUpdateOperationsInput No
hiNormal Float | FloatFieldUpdateOperationsInput No
lowAbsolute Float | FloatFieldUpdateOperationsInput No
lowCritical Float | FloatFieldUpdateOperationsInput No
lowNormal Float | FloatFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptProposalUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptProposalUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptProposalUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptWordUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptWordUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ConceptWordUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
word String | StringFieldUpdateOperationsInput No
locale String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FieldUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUpdateManyWithoutFieldNestedInput No
fieldOptionList FieldOptionUpdateManyWithoutFieldNestedInput No
formList FormUpdateManyWithoutFieldNestedInput No

FieldUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
fieldAnswerList FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput No
fieldOptionList FieldOptionUncheckedUpdateManyWithoutFieldNestedInput No
formList FormUncheckedUpdateManyWithoutFieldNestedInput No

FieldUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fieldType String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounter EncounterUpdateOneRequiredWithoutObsListNestedInput No

ObsUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

ObsUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
obsDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueDatetime DateTime | DateTimeFieldUpdateOperationsInput No
valueNumeric Float | FloatFieldUpdateOperationsInput No
valueText String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

OrderUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
encounter EncounterUpdateOneRequiredWithoutOrderListNestedInput No
OrderFrequency OrderFrequencyUpdateOneWithoutOrderListNestedInput No
OrderRoute OrderRouteUpdateOneWithoutOrderListNestedInput No
OrderType OrderTypeUpdateOneWithoutOrderListNestedInput No
OrderUnit OrderUnitUpdateOneWithoutOrderListNestedInput No

OrderUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

OrderUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
encounterId String | StringFieldUpdateOperationsInput No
orderDatetime DateTime | DateTimeFieldUpdateOperationsInput No
instructions String | StringFieldUpdateOperationsInput No
dosage String | StringFieldUpdateOperationsInput No
route String | StringFieldUpdateOperationsInput No
frequency String | StringFieldUpdateOperationsInput No
asNeeded Boolean | BoolFieldUpdateOperationsInput No
prn Boolean | BoolFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
units String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
orderFrequencyId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderRouteId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderTypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
orderUnitId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateManyConceptClassInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes

ConceptUpdateWithoutConceptClassInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptClassInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateManyWithoutConceptClassInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateManyConceptDatatypeInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes

ConceptUpdateWithoutConceptDatatypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptDatatypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateManyWithoutConceptDatatypeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateManyConceptMapInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptSetId String | Null Yes
conceptSourceId String | Null Yes

ConceptUpdateWithoutConceptMapInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptMapInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateManyWithoutConceptMapInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateManyConceptSetInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSourceId String | Null Yes

ConceptUpdateWithoutConceptSetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSource ConceptSourceUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptSetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateManyWithoutConceptSetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSourceId String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateManyConceptSourceInput

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String | Null Yes
conceptDatatypeId String | Null Yes
conceptMapId String | Null Yes
conceptSetId String | Null Yes

ConceptUpdateWithoutConceptSourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
ConceptClass ConceptClassUpdateOneWithoutConceptListNestedInput No
ConceptDatatype ConceptDatatypeUpdateOneWithoutConceptListNestedInput No
conceptMap ConceptMapUpdateOneWithoutConceptListNestedInput No
conceptSet ConceptSetUpdateOneWithoutConceptListNestedInput No
answerList ConceptAnswerUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUpdateManyWithoutConceptNestedInput No
fieldList FieldUpdateManyWithoutConceptNestedInput No
obsList ObsUpdateManyWithoutConceptNestedInput No
orderList OrderUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutConceptSourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes
answerList ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptNestedInput No
metaList ConceptAnswerUncheckedUpdateManyWithoutConceptNestedInput No
conceptNameList ConceptNameUncheckedUpdateManyWithoutConceptNestedInput No
conceptNumericList ConceptNumericUncheckedUpdateManyWithoutConceptNestedInput No
conceptProposalList ConceptProposalUncheckedUpdateManyWithoutConceptNestedInput No
conceptWordList ConceptWordUncheckedUpdateManyWithoutConceptNestedInput No
fieldList FieldUncheckedUpdateManyWithoutConceptNestedInput No
obsList ObsUncheckedUpdateManyWithoutConceptNestedInput No
orderList OrderUncheckedUpdateManyWithoutConceptNestedInput No

ConceptUncheckedUpdateManyWithoutConceptSourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
dataType String | StringFieldUpdateOperationsInput No
class String | StringFieldUpdateOperationsInput No
isRetired Boolean | BoolFieldUpdateOperationsInput No
retiredBy String | StringFieldUpdateOperationsInput No
dateRetired DateTime | DateTimeFieldUpdateOperationsInput No
retiredReason String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
conceptClassId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptDatatypeId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptMapId String | NullableStringFieldUpdateOperationsInput | Null Yes
conceptSetId String | NullableStringFieldUpdateOperationsInput | Null Yes

FormResourceCreateManyResourceInput

Name Type Nullable
id String No
uuid String No
formId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceUpdateWithoutResourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No
form FormUpdateOneRequiredWithoutFormResourceListNestedInput No

FormResourceUncheckedUpdateWithoutResourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

FormResourceUncheckedUpdateManyWithoutResourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
formId String | StringFieldUpdateOperationsInput No
creator String | StringFieldUpdateOperationsInput No
dateCreated DateTime | DateTimeFieldUpdateOperationsInput No
lastChangedBy String | StringFieldUpdateOperationsInput No
lastChangedDate DateTime | DateTimeFieldUpdateOperationsInput No

BlogPostTagArrowCreateManyPostInput

Name Type Nullable
id String No
tagId String No

BlogPostTagArrowUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tag BlogPostTagUpdateOneRequiredWithoutPostArrowListNestedInput No

BlogPostTagArrowUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tagId String | StringFieldUpdateOperationsInput No

BlogPostTagArrowUncheckedUpdateManyWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tagId String | StringFieldUpdateOperationsInput No

BlogPostTagArrowCreateManyTagInput

Name Type Nullable
id String No
postId String No

BlogPostTagArrowUpdateWithoutTagInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
post BlogPostUpdateOneRequiredWithoutTagArrowListNestedInput No

BlogPostTagArrowUncheckedUpdateWithoutTagInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No

BlogPostTagArrowUncheckedUpdateManyWithoutTagInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No

BlogPostCreateManyAuthorInput

Name Type Nullable
id String No
title String No
content String No
context JsonNullValueInput | Json No
spaceTimeCoordinatesId String No

BlogPostUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
spaceTimeCoordinates SpaceTimeCoordinatesUpdateOneRequiredWithoutBlogPostNestedInput No
tagArrowList BlogPostTagArrowUpdateManyWithoutPostNestedInput No

BlogPostUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
spaceTimeCoordinatesId String | StringFieldUpdateOperationsInput No
tagArrowList BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput No

BlogPostUncheckedUpdateManyWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
context JsonNullValueInput | Json No
spaceTimeCoordinatesId String | StringFieldUpdateOperationsInput No

BudgetEntryCreateManyServiceInput

Name Type Nullable
id String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budgetId String No

BudgetEntryUpdateWithoutServiceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budget BudgetUpdateOneRequiredWithoutEntryListNestedInput No

BudgetEntryUncheckedUpdateWithoutServiceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No

BudgetEntryUncheckedUpdateManyWithoutServiceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No

BudgetBudUserCreateManyBudgetInput

Name Type Nullable
id String No
userId String No
role String No
ability String No
category String No

BudgetEntryCreateManyBudgetInput

Name Type Nullable
id String No
serviceId String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No

BudgetBudUserUpdateWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
user BudUserUpdateOneRequiredWithoutBudgetListNestedInput No

BudgetBudUserUncheckedUpdateWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

BudgetBudUserUncheckedUpdateManyWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

BudgetEntryUpdateWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
service BudgetServiceUpdateOneRequiredWithoutEntryListNestedInput No

BudgetEntryUncheckedUpdateWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
serviceId String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetEntryUncheckedUpdateManyWithoutBudgetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
serviceId String | StringFieldUpdateOperationsInput No
cost Float | FloatFieldUpdateOperationsInput No
discount Float | FloatFieldUpdateOperationsInput No
promotion Float | FloatFieldUpdateOperationsInput No
subtotal Float | FloatFieldUpdateOperationsInput No
percentChange Float | FloatFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

BudEventCreateManyBudUserInput

Name Type Nullable
id String No
type String No
description String No
categoryList BudEventCreatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime No

BudgetBudUserCreateManyUserInput

Name Type Nullable
id String No
budgetId String No
role String No
ability String No
category String No

BudEventUpdateWithoutBudUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

BudEventUncheckedUpdateWithoutBudUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

BudEventUncheckedUpdateManyWithoutBudUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
categoryList BudEventUpdatecategoryListInput | String No
metadata JsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

BudgetBudUserUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No
budget BudgetUpdateOneRequiredWithoutUserListNestedInput No

BudgetBudUserUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

BudgetBudUserUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
budgetId String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
ability String | StringFieldUpdateOperationsInput No
category String | StringFieldUpdateOperationsInput No

Output Types

Principal

Name Type Nullable
id String Yes
username String Yes
firstName String No
lastName String Yes
password String No
phoneCode Int No
phoneNumber String No
streetName String No
city String No
areaCode String No
country Country Yes
email String No
emailVerified DateTime No
payerType DiscountType Yes
image String No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No
createdPrincipals Principal[] No
updatedPrincipals Principal[] No
createdPayments Payment[] No
updatedPayments Payment[] No
createdAppointments Appointment[] No
updatedAppointments Appointment[] No
createdEquipments Equipment[] No
updatedEquipments Equipment[] No
createdPatients Patient[] No
updatedPatients Patient[] No
createdServices Service[] No
updatedServices Service[] No
accounts Account[] No
authenticator Authenticator[] No
receivedPaymentList Payment[] No
sessions Session[] No
_count PrincipalCountOutputType Yes

Account

Name Type Nullable
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
createdAt DateTime Yes
updatedAt DateTime Yes
user Principal Yes

Session

Name Type Nullable
sessionToken String Yes
userId String Yes
expiresAt DateTime Yes
createdAt DateTime Yes
updatedAt DateTime Yes
user Principal Yes

VerificationToken

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes

Authenticator

Name Type Nullable
credentialID String Yes
userId String Yes
providerAccountId String Yes
credentialPublicKey String Yes
counter Int Yes
credentialDeviceType String Yes
credentialBackedUp Boolean Yes
transports String No
user Principal Yes

Payment

Name Type Nullable
id String Yes
payerId String Yes
receiverId String Yes
paymentMethod PaymentMethod Yes
totalPayableAmount Int Yes
discountApplied Int Yes
paidAmount Int Yes
reasonForVisit String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
payer Patient Yes
receiver Principal Yes
creator Principal No
updater Principal No

Appointment

Name Type Nullable
id String Yes
uuid String Yes
date DateTime Yes
startTime TimeOfDay No
endTime TimeOfDay No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
appointmentTypeId String No
patientId String Yes
locationId String No
providerId String No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
appointmentType AppointmentType No
location Location No
patient Patient Yes
provider Provider No
creator Principal No
updater Principal No

AppointmentType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
duration Int Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
appointmentList Appointment[] No
_count AppointmentTypeCountOutputType Yes

Location

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
address1 String Yes
address2 String Yes
city String Yes
stateProvince String Yes
country String Yes
postalCode String Yes
latitude Float Yes
longitude Float Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
appointmentList Appointment[] No
encounterList Encounter[] No
_count LocationCountOutputType Yes

Patient

Name Type Nullable
id String Yes
uuid String Yes
givenName String Yes
middleName String Yes
familyName String Yes
gender Gender Yes
birthdate DateTime No
phoneCode Int No
phoneNumber String No
image String No
streetName String No
city String No
areaCode String No
country Country Yes
email String No
emailVerified DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
paymentList Payment[] No
creator Principal No
updater Principal No
appointmentList Appointment[] No
encounterList Encounter[] No
_count PatientCountOutputType Yes

Equipment

Name Type Nullable
id String Yes
name String Yes
price Int Yes
count Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No

Service

Name Type Nullable
id String Yes
name String Yes
description String Yes
price Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No

Provider

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
identifier String Yes
description String Yes
voided Boolean Yes
voidedBy String Yes
dateVoided DateTime Yes
voidReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
appointmentList Appointment[] No
encounterList Encounter[] No
_count ProviderCountOutputType Yes

Form

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
version String Yes
retired Boolean Yes
retiredBy String Yes
dateRetired DateTime Yes
retiredReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
fieldId String No
encounterList Encounter[] No
field Field No
formEncounterList FormEncounter[] No
formResourceList FormResource[] No
formSubmissionList FormSubmission[] No
_count FormCountOutputType Yes

FormEncounter

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
encounterId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
encounter Encounter Yes
form Form Yes

FormResource

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
resourceId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
form Form Yes
resource Resource Yes

FormSubmission

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
encounterId String Yes
submissionDate DateTime Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
fieldAnswerList FieldAnswer[] No
encounter Encounter Yes
form Form Yes
_count FormSubmissionCountOutputType Yes

Field

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
fieldType String Yes
conceptId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes
fieldAnswerList FieldAnswer[] No
fieldOptionList FieldOption[] No
formList Form[] No
_count FieldCountOutputType Yes

FieldAnswer

Name Type Nullable
id String Yes
uuid String Yes
formSubmissionId String Yes
fieldId String Yes
value String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
field Field Yes
formSubmission FormSubmission Yes

FieldOption

Name Type Nullable
id String Yes
uuid String Yes
fieldId String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
field Field Yes

Encounter

Name Type Nullable
id String Yes
uuid String Yes
encounterTypeId String Yes
patientId String Yes
locationId String Yes
formId String Yes
providerId String Yes
startDatetime DateTime Yes
endDatetime DateTime Yes
voided Boolean Yes
voidedBy String Yes
dateVoided DateTime Yes
voidReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
encounterType EncounterType Yes
form Form Yes
location Location Yes
patient Patient Yes
provider Provider Yes
formEncounterList FormEncounter[] No
formSubmissionList FormSubmission[] No
obsList Obs[] No
orderList Order[] No
_count EncounterCountOutputType Yes

EncounterType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
encounterList Encounter[] No
_count EncounterTypeCountOutputType Yes

Obs

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
encounterId String Yes
obsDatetime DateTime Yes
valueDatetime DateTime Yes
valueNumeric Float Yes
valueText String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes
encounter Encounter Yes

Order

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
encounterId String Yes
orderDatetime DateTime Yes
instructions String Yes
dosage String Yes
route String Yes
frequency String Yes
asNeeded Boolean Yes
prn Boolean Yes
quantity Int Yes
units String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderFrequencyId String No
orderRouteId String No
orderTypeId String No
orderUnitId String No
concept Concept Yes
encounter Encounter Yes
OrderFrequency OrderFrequency No
OrderRoute OrderRoute No
OrderType OrderType No
OrderUnit OrderUnit No

OrderFrequency

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderList Order[] No
_count OrderFrequencyCountOutputType Yes

OrderRoute

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderList Order[] No
_count OrderRouteCountOutputType Yes

OrderType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderList Order[] No
_count OrderTypeCountOutputType Yes

OrderUnit

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderList Order[] No
_count OrderUnitCountOutputType Yes

Concept

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
dataType String Yes
class String Yes
isRetired Boolean Yes
retiredBy String Yes
dateRetired DateTime Yes
retiredReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptClassId String No
conceptDatatypeId String No
conceptMapId String No
conceptSetId String No
conceptSourceId String No
ConceptClass ConceptClass No
ConceptDatatype ConceptDatatype No
conceptMap ConceptMap No
conceptSet ConceptSet No
conceptSource ConceptSource No
answerList ConceptAnswer[] No
metaList ConceptAnswer[] No
conceptNameList ConceptName[] No
conceptNumericList ConceptNumeric[] No
conceptProposalList ConceptProposal[] No
conceptWordList ConceptWord[] No
fieldList Field[] No
obsList Obs[] No
orderList Order[] No
_count ConceptCountOutputType Yes

ConceptAnswer

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
answerConceptId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
answerConcept Concept Yes
concept Concept Yes

ConceptClass

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptList Concept[] No
_count ConceptClassCountOutputType Yes

ConceptDatatype

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptList Concept[] No
_count ConceptDatatypeCountOutputType Yes

ConceptMap

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptList Concept[] No
_count ConceptMapCountOutputType Yes

ConceptName

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
name String Yes
locale String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

ConceptNumeric

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
hiAbsolute Float Yes
hiCritical Float Yes
hiNormal Float Yes
lowAbsolute Float Yes
lowCritical Float Yes
lowNormal Float Yes
units String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

ConceptProposal

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

ConceptSet

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptList Concept[] No
_count ConceptSetCountOutputType Yes

ConceptSource

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptList Concept[] No
_count ConceptSourceCountOutputType Yes

ConceptWord

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
word String Yes
locale String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

Resource

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
formResourceList FormResource[] No
_count ResourceCountOutputType Yes

BlogPost

Name Type Nullable
id String Yes
title String Yes
content String Yes
context Json Yes
authorId String Yes
spaceTimeCoordinatesId String Yes
author BlogPostAuthor Yes
spaceTimeCoordinates SpaceTimeCoordinates Yes
tagArrowList BlogPostTagArrow[] No
_count BlogPostCountOutputType Yes

BlogPostTag

Name Type Nullable
id String Yes
name String Yes
descriptor String No
postArrowList BlogPostTagArrow[] No
_count BlogPostTagCountOutputType Yes

BlogPostTagArrow

Name Type Nullable
id String Yes
postId String Yes
tagId String Yes
post BlogPost Yes
tag BlogPostTag Yes

BlogPostAuthor

Name Type Nullable
id String Yes
name String Yes
blogPostList BlogPost[] No
_count BlogPostAuthorCountOutputType Yes

SpaceTimeCoordinates

Name Type Nullable
id String Yes
latitude Float Yes
longitude Float Yes
startTime Float Yes
pauseTime Float No
stopTime Float Yes
timezone String Yes
blogPostId String Yes
BlogPost BlogPost No

BudgetEntry

Name Type Nullable
id String Yes
serviceId String Yes
cost Float Yes
discount Float Yes
promotion Float Yes
subtotal Float Yes
percentChange Float Yes
createdAt DateTime Yes
updatedAt DateTime Yes
budgetId String Yes
budget Budget Yes
service BudgetService Yes

BudgetService

Name Type Nullable
id String Yes
description String Yes
category String Yes
metadata Json Yes
createdAt DateTime Yes
updatedAt DateTime Yes
entryList BudgetEntry[] No
_count BudgetServiceCountOutputType Yes

Budget

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
fiscalYear Int Yes
reportId String No
userList BudgetBudUser[] No
entryList BudgetEntry[] No
report Report No
_count BudgetCountOutputType Yes

Report

Name Type Nullable
id String Yes
budgetId String Yes
totalCost Float Yes
totalDiscount Float Yes
totalPromotion Float Yes
totalSubtotal Float Yes
createdAt DateTime Yes
updatedAt DateTime Yes
budget Budget Yes

BudUser

Name Type Nullable
id String Yes
name String Yes
email String Yes
password String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
eventList BudEvent[] No
budgetList BudgetBudUser[] No
_count BudUserCountOutputType Yes

BudgetBudUser

Name Type Nullable
id String Yes
userId String Yes
budgetId String Yes
role String Yes
ability String Yes
category String Yes
budget Budget Yes
user BudUser Yes

BudEvent

Name Type Nullable
id String Yes
type String Yes
description String Yes
categoryList String No
metadata Json Yes
budUserId String Yes
createdAt DateTime Yes
budUser BudUser Yes

CreateManyPrincipalAndReturnOutputType

Name Type Nullable
id String Yes
username String Yes
firstName String No
lastName String Yes
password String No
phoneCode Int No
phoneNumber String No
streetName String No
city String No
areaCode String No
country Country Yes
email String No
emailVerified DateTime No
payerType DiscountType Yes
image String No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No

CreateManyAccountAndReturnOutputType

Name Type Nullable
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
createdAt DateTime Yes
updatedAt DateTime Yes
user Principal Yes

CreateManySessionAndReturnOutputType

Name Type Nullable
sessionToken String Yes
userId String Yes
expiresAt DateTime Yes
createdAt DateTime Yes
updatedAt DateTime Yes
user Principal Yes

CreateManyVerificationTokenAndReturnOutputType

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes

CreateManyAuthenticatorAndReturnOutputType

Name Type Nullable
credentialID String Yes
userId String Yes
providerAccountId String Yes
credentialPublicKey String Yes
counter Int Yes
credentialDeviceType String Yes
credentialBackedUp Boolean Yes
transports String No
user Principal Yes

CreateManyPaymentAndReturnOutputType

Name Type Nullable
id String Yes
payerId String Yes
receiverId String Yes
paymentMethod PaymentMethod Yes
totalPayableAmount Int Yes
discountApplied Int Yes
paidAmount Int Yes
reasonForVisit String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
payer Patient Yes
receiver Principal Yes
creator Principal No
updater Principal No

CreateManyAppointmentAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
date DateTime Yes
startTime TimeOfDay No
endTime TimeOfDay No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
appointmentTypeId String No
patientId String Yes
locationId String No
providerId String No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
appointmentType AppointmentType No
location Location No
patient Patient Yes
provider Provider No
creator Principal No
updater Principal No

CreateManyAppointmentTypeAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
duration Int Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyLocationAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
address1 String Yes
address2 String Yes
city String Yes
stateProvince String Yes
country String Yes
postalCode String Yes
latitude Float Yes
longitude Float Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyPatientAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
givenName String Yes
middleName String Yes
familyName String Yes
gender Gender Yes
birthdate DateTime No
phoneCode Int No
phoneNumber String No
image String No
streetName String No
city String No
areaCode String No
country Country Yes
email String No
emailVerified DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No

CreateManyEquipmentAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
price Int Yes
count Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No

CreateManyServiceAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
description String Yes
price Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
creator Principal No
updater Principal No

CreateManyProviderAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
identifier String Yes
description String Yes
voided Boolean Yes
voidedBy String Yes
dateVoided DateTime Yes
voidReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyFormAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
version String Yes
retired Boolean Yes
retiredBy String Yes
dateRetired DateTime Yes
retiredReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
fieldId String No
field Field No

CreateManyFormEncounterAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
encounterId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
encounter Encounter Yes
form Form Yes

CreateManyFormResourceAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
resourceId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
form Form Yes
resource Resource Yes

CreateManyFormSubmissionAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
encounterId String Yes
submissionDate DateTime Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
encounter Encounter Yes
form Form Yes

CreateManyFieldAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
fieldType String Yes
conceptId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

CreateManyFieldAnswerAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
formSubmissionId String Yes
fieldId String Yes
value String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
field Field Yes
formSubmission FormSubmission Yes

CreateManyFieldOptionAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
fieldId String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
field Field Yes

CreateManyEncounterAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
encounterTypeId String Yes
patientId String Yes
locationId String Yes
formId String Yes
providerId String Yes
startDatetime DateTime Yes
endDatetime DateTime Yes
voided Boolean Yes
voidedBy String Yes
dateVoided DateTime Yes
voidReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
encounterType EncounterType Yes
form Form Yes
location Location Yes
patient Patient Yes
provider Provider Yes

CreateManyEncounterTypeAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyObsAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
encounterId String Yes
obsDatetime DateTime Yes
valueDatetime DateTime Yes
valueNumeric Float Yes
valueText String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes
encounter Encounter Yes

CreateManyOrderAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
encounterId String Yes
orderDatetime DateTime Yes
instructions String Yes
dosage String Yes
route String Yes
frequency String Yes
asNeeded Boolean Yes
prn Boolean Yes
quantity Int Yes
units String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderFrequencyId String No
orderRouteId String No
orderTypeId String No
orderUnitId String No
concept Concept Yes
encounter Encounter Yes
OrderFrequency OrderFrequency No
OrderRoute OrderRoute No
OrderType OrderType No
OrderUnit OrderUnit No

CreateManyOrderFrequencyAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyOrderRouteAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyOrderTypeAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyOrderUnitAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyConceptAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
dataType String Yes
class String Yes
isRetired Boolean Yes
retiredBy String Yes
dateRetired DateTime Yes
retiredReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptClassId String No
conceptDatatypeId String No
conceptMapId String No
conceptSetId String No
conceptSourceId String No
ConceptClass ConceptClass No
ConceptDatatype ConceptDatatype No
conceptMap ConceptMap No
conceptSet ConceptSet No
conceptSource ConceptSource No

CreateManyConceptAnswerAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
answerConceptId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
answerConcept Concept Yes
concept Concept Yes

CreateManyConceptClassAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyConceptDatatypeAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyConceptMapAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyConceptNameAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
name String Yes
locale String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

CreateManyConceptNumericAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
hiAbsolute Float Yes
hiCritical Float Yes
hiNormal Float Yes
lowAbsolute Float Yes
lowCritical Float Yes
lowNormal Float Yes
units String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

CreateManyConceptProposalAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

CreateManyConceptSetAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyConceptSourceAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyConceptWordAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
word String Yes
locale String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
concept Concept Yes

CreateManyResourceAndReturnOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes

CreateManyBlogPostAndReturnOutputType

Name Type Nullable
id String Yes
title String Yes
content String Yes
context Json Yes
authorId String Yes
spaceTimeCoordinatesId String Yes
author BlogPostAuthor Yes
spaceTimeCoordinates SpaceTimeCoordinates Yes

CreateManyBlogPostTagAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
descriptor String No

CreateManyBlogPostTagArrowAndReturnOutputType

Name Type Nullable
id String Yes
postId String Yes
tagId String Yes
post BlogPost Yes
tag BlogPostTag Yes

CreateManyBlogPostAuthorAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes

CreateManySpaceTimeCoordinatesAndReturnOutputType

Name Type Nullable
id String Yes
latitude Float Yes
longitude Float Yes
startTime Float Yes
pauseTime Float No
stopTime Float Yes
timezone String Yes
blogPostId String Yes

CreateManyBudgetEntryAndReturnOutputType

Name Type Nullable
id String Yes
serviceId String Yes
cost Float Yes
discount Float Yes
promotion Float Yes
subtotal Float Yes
percentChange Float Yes
createdAt DateTime Yes
updatedAt DateTime Yes
budgetId String Yes
budget Budget Yes
service BudgetService Yes

CreateManyBudgetServiceAndReturnOutputType

Name Type Nullable
id String Yes
description String Yes
category String Yes
metadata Json Yes
createdAt DateTime Yes
updatedAt DateTime Yes

CreateManyBudgetAndReturnOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
fiscalYear Int Yes
reportId String No

CreateManyReportAndReturnOutputType

Name Type Nullable
id String Yes
budgetId String Yes
totalCost Float Yes
totalDiscount Float Yes
totalPromotion Float Yes
totalSubtotal Float Yes
createdAt DateTime Yes
updatedAt DateTime Yes
budget Budget Yes

CreateManyBudUserAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
email String Yes
password String Yes
createdAt DateTime Yes
updatedAt DateTime Yes

CreateManyBudgetBudUserAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
budgetId String Yes
role String Yes
ability String Yes
category String Yes
budget Budget Yes
user BudUser Yes

CreateManyBudEventAndReturnOutputType

Name Type Nullable
id String Yes
type String Yes
description String Yes
categoryList String No
metadata Json Yes
budUserId String Yes
createdAt DateTime Yes
budUser BudUser Yes


PrincipalGroupByOutputType

Name Type Nullable
id String Yes
username String Yes
firstName String No
lastName String Yes
password String No
phoneCode Int No
phoneNumber String No
streetName String No
city String No
areaCode String No
country Country Yes
email String No
emailVerified DateTime No
payerType DiscountType Yes
image String No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
_count PrincipalCountAggregateOutputType No
_avg PrincipalAvgAggregateOutputType No
_sum PrincipalSumAggregateOutputType No
_min PrincipalMinAggregateOutputType No
_max PrincipalMaxAggregateOutputType No


AccountGroupByOutputType

Name Type Nullable
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
createdAt DateTime Yes
updatedAt DateTime Yes
_count AccountCountAggregateOutputType No
_avg AccountAvgAggregateOutputType No
_sum AccountSumAggregateOutputType No
_min AccountMinAggregateOutputType No
_max AccountMaxAggregateOutputType No

AggregateSession

Name Type Nullable
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

SessionGroupByOutputType

Name Type Nullable
sessionToken String Yes
userId String Yes
expiresAt DateTime Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No


VerificationTokenGroupByOutputType

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes
_count VerificationTokenCountAggregateOutputType No
_min VerificationTokenMinAggregateOutputType No
_max VerificationTokenMaxAggregateOutputType No


AuthenticatorGroupByOutputType

Name Type Nullable
credentialID String Yes
userId String Yes
providerAccountId String Yes
credentialPublicKey String Yes
counter Int Yes
credentialDeviceType String Yes
credentialBackedUp Boolean Yes
transports String No
_count AuthenticatorCountAggregateOutputType No
_avg AuthenticatorAvgAggregateOutputType No
_sum AuthenticatorSumAggregateOutputType No
_min AuthenticatorMinAggregateOutputType No
_max AuthenticatorMaxAggregateOutputType No


PaymentGroupByOutputType

Name Type Nullable
id String Yes
payerId String Yes
receiverId String Yes
paymentMethod PaymentMethod Yes
totalPayableAmount Int Yes
discountApplied Int Yes
paidAmount Int Yes
reasonForVisit String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
_count PaymentCountAggregateOutputType No
_avg PaymentAvgAggregateOutputType No
_sum PaymentSumAggregateOutputType No
_min PaymentMinAggregateOutputType No
_max PaymentMaxAggregateOutputType No

AggregateAppointment

Name Type Nullable
_count AppointmentCountAggregateOutputType No
_min AppointmentMinAggregateOutputType No
_max AppointmentMaxAggregateOutputType No

AppointmentGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
date DateTime Yes
startTime TimeOfDay No
endTime TimeOfDay No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
appointmentTypeId String No
patientId String Yes
locationId String No
providerId String No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
_count AppointmentCountAggregateOutputType No
_min AppointmentMinAggregateOutputType No
_max AppointmentMaxAggregateOutputType No


AppointmentTypeGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
duration Int Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count AppointmentTypeCountAggregateOutputType No
_avg AppointmentTypeAvgAggregateOutputType No
_sum AppointmentTypeSumAggregateOutputType No
_min AppointmentTypeMinAggregateOutputType No
_max AppointmentTypeMaxAggregateOutputType No


LocationGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
address1 String Yes
address2 String Yes
city String Yes
stateProvince String Yes
country String Yes
postalCode String Yes
latitude Float Yes
longitude Float Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count LocationCountAggregateOutputType No
_avg LocationAvgAggregateOutputType No
_sum LocationSumAggregateOutputType No
_min LocationMinAggregateOutputType No
_max LocationMaxAggregateOutputType No


PatientGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
givenName String Yes
middleName String Yes
familyName String Yes
gender Gender Yes
birthdate DateTime No
phoneCode Int No
phoneNumber String No
image String No
streetName String No
city String No
areaCode String No
country Country Yes
email String No
emailVerified DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
_count PatientCountAggregateOutputType No
_avg PatientAvgAggregateOutputType No
_sum PatientSumAggregateOutputType No
_min PatientMinAggregateOutputType No
_max PatientMaxAggregateOutputType No


EquipmentGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
price Int Yes
count Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
_count EquipmentCountAggregateOutputType No
_avg EquipmentAvgAggregateOutputType No
_sum EquipmentSumAggregateOutputType No
_min EquipmentMinAggregateOutputType No
_max EquipmentMaxAggregateOutputType No


ServiceGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String Yes
price Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
createdBy String No
updatedBy String No
_count ServiceCountAggregateOutputType No
_avg ServiceAvgAggregateOutputType No
_sum ServiceSumAggregateOutputType No
_min ServiceMinAggregateOutputType No
_max ServiceMaxAggregateOutputType No

AggregateProvider

Name Type Nullable
_count ProviderCountAggregateOutputType No
_min ProviderMinAggregateOutputType No
_max ProviderMaxAggregateOutputType No

ProviderGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
identifier String Yes
description String Yes
voided Boolean Yes
voidedBy String Yes
dateVoided DateTime Yes
voidReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ProviderCountAggregateOutputType No
_min ProviderMinAggregateOutputType No
_max ProviderMaxAggregateOutputType No

AggregateForm

Name Type Nullable
_count FormCountAggregateOutputType No
_min FormMinAggregateOutputType No
_max FormMaxAggregateOutputType No

FormGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
version String Yes
retired Boolean Yes
retiredBy String Yes
dateRetired DateTime Yes
retiredReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
fieldId String No
_count FormCountAggregateOutputType No
_min FormMinAggregateOutputType No
_max FormMaxAggregateOutputType No

AggregateFormEncounter

Name Type Nullable
_count FormEncounterCountAggregateOutputType No
_min FormEncounterMinAggregateOutputType No
_max FormEncounterMaxAggregateOutputType No

FormEncounterGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
encounterId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count FormEncounterCountAggregateOutputType No
_min FormEncounterMinAggregateOutputType No
_max FormEncounterMaxAggregateOutputType No

AggregateFormResource

Name Type Nullable
_count FormResourceCountAggregateOutputType No
_min FormResourceMinAggregateOutputType No
_max FormResourceMaxAggregateOutputType No

FormResourceGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
resourceId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count FormResourceCountAggregateOutputType No
_min FormResourceMinAggregateOutputType No
_max FormResourceMaxAggregateOutputType No


FormSubmissionGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
formId String Yes
encounterId String Yes
submissionDate DateTime Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count FormSubmissionCountAggregateOutputType No
_min FormSubmissionMinAggregateOutputType No
_max FormSubmissionMaxAggregateOutputType No

AggregateField

Name Type Nullable
_count FieldCountAggregateOutputType No
_min FieldMinAggregateOutputType No
_max FieldMaxAggregateOutputType No

FieldGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
fieldType String Yes
conceptId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count FieldCountAggregateOutputType No
_min FieldMinAggregateOutputType No
_max FieldMaxAggregateOutputType No

AggregateFieldAnswer

Name Type Nullable
_count FieldAnswerCountAggregateOutputType No
_min FieldAnswerMinAggregateOutputType No
_max FieldAnswerMaxAggregateOutputType No

FieldAnswerGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
formSubmissionId String Yes
fieldId String Yes
value String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count FieldAnswerCountAggregateOutputType No
_min FieldAnswerMinAggregateOutputType No
_max FieldAnswerMaxAggregateOutputType No

AggregateFieldOption

Name Type Nullable
_count FieldOptionCountAggregateOutputType No
_min FieldOptionMinAggregateOutputType No
_max FieldOptionMaxAggregateOutputType No

FieldOptionGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
fieldId String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count FieldOptionCountAggregateOutputType No
_min FieldOptionMinAggregateOutputType No
_max FieldOptionMaxAggregateOutputType No

AggregateEncounter

Name Type Nullable
_count EncounterCountAggregateOutputType No
_min EncounterMinAggregateOutputType No
_max EncounterMaxAggregateOutputType No

EncounterGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
encounterTypeId String Yes
patientId String Yes
locationId String Yes
formId String Yes
providerId String Yes
startDatetime DateTime Yes
endDatetime DateTime Yes
voided Boolean Yes
voidedBy String Yes
dateVoided DateTime Yes
voidReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count EncounterCountAggregateOutputType No
_min EncounterMinAggregateOutputType No
_max EncounterMaxAggregateOutputType No

AggregateEncounterType

Name Type Nullable
_count EncounterTypeCountAggregateOutputType No
_min EncounterTypeMinAggregateOutputType No
_max EncounterTypeMaxAggregateOutputType No

EncounterTypeGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count EncounterTypeCountAggregateOutputType No
_min EncounterTypeMinAggregateOutputType No
_max EncounterTypeMaxAggregateOutputType No


ObsGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
encounterId String Yes
obsDatetime DateTime Yes
valueDatetime DateTime Yes
valueNumeric Float Yes
valueText String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ObsCountAggregateOutputType No
_avg ObsAvgAggregateOutputType No
_sum ObsSumAggregateOutputType No
_min ObsMinAggregateOutputType No
_max ObsMaxAggregateOutputType No


OrderGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
encounterId String Yes
orderDatetime DateTime Yes
instructions String Yes
dosage String Yes
route String Yes
frequency String Yes
asNeeded Boolean Yes
prn Boolean Yes
quantity Int Yes
units String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
orderFrequencyId String No
orderRouteId String No
orderTypeId String No
orderUnitId String No
_count OrderCountAggregateOutputType No
_avg OrderAvgAggregateOutputType No
_sum OrderSumAggregateOutputType No
_min OrderMinAggregateOutputType No
_max OrderMaxAggregateOutputType No


OrderFrequencyGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count OrderFrequencyCountAggregateOutputType No
_min OrderFrequencyMinAggregateOutputType No
_max OrderFrequencyMaxAggregateOutputType No

AggregateOrderRoute

Name Type Nullable
_count OrderRouteCountAggregateOutputType No
_min OrderRouteMinAggregateOutputType No
_max OrderRouteMaxAggregateOutputType No

OrderRouteGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count OrderRouteCountAggregateOutputType No
_min OrderRouteMinAggregateOutputType No
_max OrderRouteMaxAggregateOutputType No

AggregateOrderType

Name Type Nullable
_count OrderTypeCountAggregateOutputType No
_min OrderTypeMinAggregateOutputType No
_max OrderTypeMaxAggregateOutputType No

OrderTypeGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count OrderTypeCountAggregateOutputType No
_min OrderTypeMinAggregateOutputType No
_max OrderTypeMaxAggregateOutputType No

AggregateOrderUnit

Name Type Nullable
_count OrderUnitCountAggregateOutputType No
_min OrderUnitMinAggregateOutputType No
_max OrderUnitMaxAggregateOutputType No

OrderUnitGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count OrderUnitCountAggregateOutputType No
_min OrderUnitMinAggregateOutputType No
_max OrderUnitMaxAggregateOutputType No

AggregateConcept

Name Type Nullable
_count ConceptCountAggregateOutputType No
_min ConceptMinAggregateOutputType No
_max ConceptMaxAggregateOutputType No

ConceptGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
dataType String Yes
class String Yes
isRetired Boolean Yes
retiredBy String Yes
dateRetired DateTime Yes
retiredReason String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
conceptClassId String No
conceptDatatypeId String No
conceptMapId String No
conceptSetId String No
conceptSourceId String No
_count ConceptCountAggregateOutputType No
_min ConceptMinAggregateOutputType No
_max ConceptMaxAggregateOutputType No

AggregateConceptAnswer

Name Type Nullable
_count ConceptAnswerCountAggregateOutputType No
_min ConceptAnswerMinAggregateOutputType No
_max ConceptAnswerMaxAggregateOutputType No

ConceptAnswerGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
answerConceptId String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptAnswerCountAggregateOutputType No
_min ConceptAnswerMinAggregateOutputType No
_max ConceptAnswerMaxAggregateOutputType No

AggregateConceptClass

Name Type Nullable
_count ConceptClassCountAggregateOutputType No
_min ConceptClassMinAggregateOutputType No
_max ConceptClassMaxAggregateOutputType No

ConceptClassGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptClassCountAggregateOutputType No
_min ConceptClassMinAggregateOutputType No
_max ConceptClassMaxAggregateOutputType No


ConceptDatatypeGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptDatatypeCountAggregateOutputType No
_min ConceptDatatypeMinAggregateOutputType No
_max ConceptDatatypeMaxAggregateOutputType No

AggregateConceptMap

Name Type Nullable
_count ConceptMapCountAggregateOutputType No
_min ConceptMapMinAggregateOutputType No
_max ConceptMapMaxAggregateOutputType No

ConceptMapGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptMapCountAggregateOutputType No
_min ConceptMapMinAggregateOutputType No
_max ConceptMapMaxAggregateOutputType No

AggregateConceptName

Name Type Nullable
_count ConceptNameCountAggregateOutputType No
_min ConceptNameMinAggregateOutputType No
_max ConceptNameMaxAggregateOutputType No

ConceptNameGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
name String Yes
locale String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptNameCountAggregateOutputType No
_min ConceptNameMinAggregateOutputType No
_max ConceptNameMaxAggregateOutputType No


ConceptNumericGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
hiAbsolute Float Yes
hiCritical Float Yes
hiNormal Float Yes
lowAbsolute Float Yes
lowCritical Float Yes
lowNormal Float Yes
units String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptNumericCountAggregateOutputType No
_avg ConceptNumericAvgAggregateOutputType No
_sum ConceptNumericSumAggregateOutputType No
_min ConceptNumericMinAggregateOutputType No
_max ConceptNumericMaxAggregateOutputType No


ConceptProposalGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptProposalCountAggregateOutputType No
_min ConceptProposalMinAggregateOutputType No
_max ConceptProposalMaxAggregateOutputType No

AggregateConceptSet

Name Type Nullable
_count ConceptSetCountAggregateOutputType No
_min ConceptSetMinAggregateOutputType No
_max ConceptSetMaxAggregateOutputType No

ConceptSetGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptSetCountAggregateOutputType No
_min ConceptSetMinAggregateOutputType No
_max ConceptSetMaxAggregateOutputType No

AggregateConceptSource

Name Type Nullable
_count ConceptSourceCountAggregateOutputType No
_min ConceptSourceMinAggregateOutputType No
_max ConceptSourceMaxAggregateOutputType No

ConceptSourceGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptSourceCountAggregateOutputType No
_min ConceptSourceMinAggregateOutputType No
_max ConceptSourceMaxAggregateOutputType No

AggregateConceptWord

Name Type Nullable
_count ConceptWordCountAggregateOutputType No
_min ConceptWordMinAggregateOutputType No
_max ConceptWordMaxAggregateOutputType No

ConceptWordGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
conceptId String Yes
word String Yes
locale String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ConceptWordCountAggregateOutputType No
_min ConceptWordMinAggregateOutputType No
_max ConceptWordMaxAggregateOutputType No

AggregateResource

Name Type Nullable
_count ResourceCountAggregateOutputType No
_min ResourceMinAggregateOutputType No
_max ResourceMaxAggregateOutputType No

ResourceGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
name String Yes
description String Yes
creator String Yes
dateCreated DateTime Yes
lastChangedBy String Yes
lastChangedDate DateTime Yes
_count ResourceCountAggregateOutputType No
_min ResourceMinAggregateOutputType No
_max ResourceMaxAggregateOutputType No

AggregateBlogPost

Name Type Nullable
_count BlogPostCountAggregateOutputType No
_min BlogPostMinAggregateOutputType No
_max BlogPostMaxAggregateOutputType No

BlogPostGroupByOutputType

Name Type Nullable
id String Yes
title String Yes
content String Yes
context Json Yes
authorId String Yes
spaceTimeCoordinatesId String Yes
_count BlogPostCountAggregateOutputType No
_min BlogPostMinAggregateOutputType No
_max BlogPostMaxAggregateOutputType No

AggregateBlogPostTag

Name Type Nullable
_count BlogPostTagCountAggregateOutputType No
_min BlogPostTagMinAggregateOutputType No
_max BlogPostTagMaxAggregateOutputType No

BlogPostTagGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
descriptor String No
_count BlogPostTagCountAggregateOutputType No
_min BlogPostTagMinAggregateOutputType No
_max BlogPostTagMaxAggregateOutputType No


BlogPostTagArrowGroupByOutputType

Name Type Nullable
id String Yes
postId String Yes
tagId String Yes
_count BlogPostTagArrowCountAggregateOutputType No
_min BlogPostTagArrowMinAggregateOutputType No
_max BlogPostTagArrowMaxAggregateOutputType No


BlogPostAuthorGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
_count BlogPostAuthorCountAggregateOutputType No
_min BlogPostAuthorMinAggregateOutputType No
_max BlogPostAuthorMaxAggregateOutputType No


SpaceTimeCoordinatesGroupByOutputType

Name Type Nullable
id String Yes
latitude Float Yes
longitude Float Yes
startTime Float Yes
pauseTime Float No
stopTime Float Yes
timezone String Yes
blogPostId String Yes
_count SpaceTimeCoordinatesCountAggregateOutputType No
_avg SpaceTimeCoordinatesAvgAggregateOutputType No
_sum SpaceTimeCoordinatesSumAggregateOutputType No
_min SpaceTimeCoordinatesMinAggregateOutputType No
_max SpaceTimeCoordinatesMaxAggregateOutputType No


BudgetEntryGroupByOutputType

Name Type Nullable
id String Yes
serviceId String Yes
cost Float Yes
discount Float Yes
promotion Float Yes
subtotal Float Yes
percentChange Float Yes
createdAt DateTime Yes
updatedAt DateTime Yes
budgetId String Yes
_count BudgetEntryCountAggregateOutputType No
_avg BudgetEntryAvgAggregateOutputType No
_sum BudgetEntrySumAggregateOutputType No
_min BudgetEntryMinAggregateOutputType No
_max BudgetEntryMaxAggregateOutputType No

AggregateBudgetService

Name Type Nullable
_count BudgetServiceCountAggregateOutputType No
_min BudgetServiceMinAggregateOutputType No
_max BudgetServiceMaxAggregateOutputType No

BudgetServiceGroupByOutputType

Name Type Nullable
id String Yes
description String Yes
category String Yes
metadata Json Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count BudgetServiceCountAggregateOutputType No
_min BudgetServiceMinAggregateOutputType No
_max BudgetServiceMaxAggregateOutputType No


BudgetGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
fiscalYear Int Yes
reportId String No
_count BudgetCountAggregateOutputType No
_avg BudgetAvgAggregateOutputType No
_sum BudgetSumAggregateOutputType No
_min BudgetMinAggregateOutputType No
_max BudgetMaxAggregateOutputType No


ReportGroupByOutputType

Name Type Nullable
id String Yes
budgetId String Yes
totalCost Float Yes
totalDiscount Float Yes
totalPromotion Float Yes
totalSubtotal Float Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count ReportCountAggregateOutputType No
_avg ReportAvgAggregateOutputType No
_sum ReportSumAggregateOutputType No
_min ReportMinAggregateOutputType No
_max ReportMaxAggregateOutputType No

AggregateBudUser

Name Type Nullable
_count BudUserCountAggregateOutputType No
_min BudUserMinAggregateOutputType No
_max BudUserMaxAggregateOutputType No

BudUserGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
email String Yes
password String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count BudUserCountAggregateOutputType No
_min BudUserMinAggregateOutputType No
_max BudUserMaxAggregateOutputType No

AggregateBudgetBudUser

Name Type Nullable
_count BudgetBudUserCountAggregateOutputType No
_min BudgetBudUserMinAggregateOutputType No
_max BudgetBudUserMaxAggregateOutputType No

BudgetBudUserGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
budgetId String Yes
role String Yes
ability String Yes
category String Yes
_count BudgetBudUserCountAggregateOutputType No
_min BudgetBudUserMinAggregateOutputType No
_max BudgetBudUserMaxAggregateOutputType No

AggregateBudEvent

Name Type Nullable
_count BudEventCountAggregateOutputType No
_min BudEventMinAggregateOutputType No
_max BudEventMaxAggregateOutputType No

BudEventGroupByOutputType

Name Type Nullable
id String Yes
type String Yes
description String Yes
categoryList String No
metadata Json Yes
budUserId String Yes
createdAt DateTime Yes
_count BudEventCountAggregateOutputType No
_min BudEventMinAggregateOutputType No
_max BudEventMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

PrincipalCountOutputType

Name Type Nullable
createdPrincipals Int Yes
updatedPrincipals Int Yes
createdPayments Int Yes
updatedPayments Int Yes
createdAppointments Int Yes
updatedAppointments Int Yes
createdEquipments Int Yes
updatedEquipments Int Yes
createdPatients Int Yes
updatedPatients Int Yes
createdServices Int Yes
updatedServices Int Yes
accounts Int Yes
authenticator Int Yes
receivedPaymentList Int Yes
sessions Int Yes

PrincipalCountAggregateOutputType

Name Type Nullable
id Int Yes
username Int Yes
firstName Int Yes
lastName Int Yes
password Int Yes
phoneCode Int Yes
phoneNumber Int Yes
streetName Int Yes
city Int Yes
areaCode Int Yes
country Int Yes
email Int Yes
emailVerified Int Yes
payerType Int Yes
image Int Yes
createdAt Int Yes
updatedAt Int Yes
createdBy Int Yes
updatedBy Int Yes
_all Int Yes

PrincipalAvgAggregateOutputType

Name Type Nullable
phoneCode Float No

PrincipalSumAggregateOutputType

Name Type Nullable
phoneCode Int No

PrincipalMinAggregateOutputType

Name Type Nullable
id String No
username String No
firstName String No
lastName String No
password String No
phoneCode Int No
phoneNumber String No
streetName String No
city String No
areaCode String No
country Country No
email String No
emailVerified DateTime No
payerType DiscountType No
image String No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

PrincipalMaxAggregateOutputType

Name Type Nullable
id String No
username String No
firstName String No
lastName String No
password String No
phoneCode Int No
phoneNumber String No
streetName String No
city String No
areaCode String No
country Country No
email String No
emailVerified DateTime No
payerType DiscountType No
image String No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

AccountCountAggregateOutputType

Name Type Nullable
userId Int Yes
type Int Yes
provider Int Yes
providerAccountId Int Yes
refresh_token Int Yes
access_token Int Yes
expires_at Int Yes
token_type Int Yes
scope Int Yes
id_token Int Yes
session_state Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

AccountAvgAggregateOutputType

Name Type Nullable
expires_at Float No

AccountSumAggregateOutputType

Name Type Nullable
expires_at Int No

AccountMinAggregateOutputType

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
createdAt DateTime No
updatedAt DateTime No

AccountMaxAggregateOutputType

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
createdAt DateTime No
updatedAt DateTime No

SessionCountAggregateOutputType

Name Type Nullable
sessionToken Int Yes
userId Int Yes
expiresAt Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

SessionMinAggregateOutputType

Name Type Nullable
sessionToken String No
userId String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

SessionMaxAggregateOutputType

Name Type Nullable
sessionToken String No
userId String No
expiresAt DateTime No
createdAt DateTime No
updatedAt DateTime No

VerificationTokenCountAggregateOutputType

Name Type Nullable
identifier Int Yes
token Int Yes
expires Int Yes
_all Int Yes

VerificationTokenMinAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenMaxAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

AuthenticatorCountAggregateOutputType

Name Type Nullable
credentialID Int Yes
userId Int Yes
providerAccountId Int Yes
credentialPublicKey Int Yes
counter Int Yes
credentialDeviceType Int Yes
credentialBackedUp Int Yes
transports Int Yes
_all Int Yes

AuthenticatorAvgAggregateOutputType

Name Type Nullable
counter Float No

AuthenticatorSumAggregateOutputType

Name Type Nullable
counter Int No

AuthenticatorMinAggregateOutputType

Name Type Nullable
credentialID String No
userId String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String No

AuthenticatorMaxAggregateOutputType

Name Type Nullable
credentialID String No
userId String No
providerAccountId String No
credentialPublicKey String No
counter Int No
credentialDeviceType String No
credentialBackedUp Boolean No
transports String No

PaymentCountAggregateOutputType

Name Type Nullable
id Int Yes
payerId Int Yes
receiverId Int Yes
paymentMethod Int Yes
totalPayableAmount Int Yes
discountApplied Int Yes
paidAmount Int Yes
reasonForVisit Int Yes
createdAt Int Yes
updatedAt Int Yes
createdBy Int Yes
updatedBy Int Yes
_all Int Yes

PaymentAvgAggregateOutputType

Name Type Nullable
totalPayableAmount Float No
discountApplied Float No
paidAmount Float No

PaymentSumAggregateOutputType

Name Type Nullable
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No

PaymentMinAggregateOutputType

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

PaymentMaxAggregateOutputType

Name Type Nullable
id String No
payerId String No
receiverId String No
paymentMethod PaymentMethod No
totalPayableAmount Int No
discountApplied Int No
paidAmount Int No
reasonForVisit String No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

AppointmentCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
date Int Yes
startTime Int Yes
endTime Int Yes
voided Int Yes
voidedBy Int Yes
dateVoided Int Yes
voidReason Int Yes
appointmentTypeId Int Yes
patientId Int Yes
locationId Int Yes
providerId Int Yes
createdAt Int Yes
updatedAt Int Yes
createdBy Int Yes
updatedBy Int Yes
_all Int Yes

AppointmentMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay No
endTime TimeOfDay No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
appointmentTypeId String No
patientId String No
locationId String No
providerId String No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

AppointmentMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
date DateTime No
startTime TimeOfDay No
endTime TimeOfDay No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
appointmentTypeId String No
patientId String No
locationId String No
providerId String No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

AppointmentTypeCountOutputType

Name Type Nullable
appointmentList Int Yes

AppointmentTypeCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
duration Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

AppointmentTypeAvgAggregateOutputType

Name Type Nullable
duration Float No

AppointmentTypeSumAggregateOutputType

Name Type Nullable
duration Int No

AppointmentTypeMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

AppointmentTypeMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
duration Int No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

LocationCountOutputType

Name Type Nullable
appointmentList Int Yes
encounterList Int Yes

LocationCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
address1 Int Yes
address2 Int Yes
city Int Yes
stateProvince Int Yes
country Int Yes
postalCode Int Yes
latitude Int Yes
longitude Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

LocationAvgAggregateOutputType

Name Type Nullable
latitude Float No
longitude Float No

LocationSumAggregateOutputType

Name Type Nullable
latitude Float No
longitude Float No

LocationMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

LocationMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
address1 String No
address2 String No
city String No
stateProvince String No
country String No
postalCode String No
latitude Float No
longitude Float No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

PatientCountOutputType

Name Type Nullable
paymentList Int Yes
appointmentList Int Yes
encounterList Int Yes

PatientCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
givenName Int Yes
middleName Int Yes
familyName Int Yes
gender Int Yes
birthdate Int Yes
phoneCode Int Yes
phoneNumber Int Yes
image Int Yes
streetName Int Yes
city Int Yes
areaCode Int Yes
country Int Yes
email Int Yes
emailVerified Int Yes
createdAt Int Yes
updatedAt Int Yes
createdBy Int Yes
updatedBy Int Yes
_all Int Yes

PatientAvgAggregateOutputType

Name Type Nullable
phoneCode Float No

PatientSumAggregateOutputType

Name Type Nullable
phoneCode Int No

PatientMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime No
phoneCode Int No
phoneNumber String No
image String No
streetName String No
city String No
areaCode String No
country Country No
email String No
emailVerified DateTime No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

PatientMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
givenName String No
middleName String No
familyName String No
gender Gender No
birthdate DateTime No
phoneCode Int No
phoneNumber String No
image String No
streetName String No
city String No
areaCode String No
country Country No
email String No
emailVerified DateTime No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

EquipmentCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
price Int Yes
count Int Yes
createdAt Int Yes
updatedAt Int Yes
createdBy Int Yes
updatedBy Int Yes
_all Int Yes

EquipmentAvgAggregateOutputType

Name Type Nullable
price Float No
count Float No

EquipmentSumAggregateOutputType

Name Type Nullable
price Int No
count Int No

EquipmentMinAggregateOutputType

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

EquipmentMaxAggregateOutputType

Name Type Nullable
id String No
name String No
price Int No
count Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

ServiceCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
price Int Yes
createdAt Int Yes
updatedAt Int Yes
createdBy Int Yes
updatedBy Int Yes
_all Int Yes

ServiceAvgAggregateOutputType

Name Type Nullable
price Float No

ServiceSumAggregateOutputType

Name Type Nullable
price Int No

ServiceMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

ServiceMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
price Int No
createdAt DateTime No
updatedAt DateTime No
createdBy String No
updatedBy String No

ProviderCountOutputType

Name Type Nullable
appointmentList Int Yes
encounterList Int Yes

ProviderCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
identifier Int Yes
description Int Yes
voided Int Yes
voidedBy Int Yes
dateVoided Int Yes
voidReason Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ProviderMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ProviderMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
identifier String No
description String No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormCountOutputType

Name Type Nullable
encounterList Int Yes
formEncounterList Int Yes
formResourceList Int Yes
formSubmissionList Int Yes

FormCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
version Int Yes
retired Int Yes
retiredBy Int Yes
dateRetired Int Yes
retiredReason Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
fieldId Int Yes
_all Int Yes

FormMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String No

FormMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
version String No
retired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
fieldId String No

FormEncounterCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
formId Int Yes
encounterId Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

FormEncounterMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormEncounterMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
formId Int Yes
resourceId Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

FormResourceMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
formId String No
resourceId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormResourceMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
formId String No
resourceId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormSubmissionCountOutputType

Name Type Nullable
fieldAnswerList Int Yes

FormSubmissionCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
formId Int Yes
encounterId Int Yes
submissionDate Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

FormSubmissionMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FormSubmissionMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
formId String No
encounterId String No
submissionDate DateTime No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldCountOutputType

Name Type Nullable
fieldAnswerList Int Yes
fieldOptionList Int Yes
formList Int Yes

FieldCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
fieldType Int Yes
conceptId Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

FieldMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
fieldType String No
conceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
formSubmissionId Int Yes
fieldId Int Yes
value Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

FieldAnswerMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
formSubmissionId String No
fieldId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldAnswerMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
formSubmissionId String No
fieldId String No
value String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
fieldId Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

FieldOptionMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
fieldId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

FieldOptionMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
fieldId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterCountOutputType

Name Type Nullable
formEncounterList Int Yes
formSubmissionList Int Yes
obsList Int Yes
orderList Int Yes

EncounterCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
encounterTypeId Int Yes
patientId Int Yes
locationId Int Yes
formId Int Yes
providerId Int Yes
startDatetime Int Yes
endDatetime Int Yes
voided Int Yes
voidedBy Int Yes
dateVoided Int Yes
voidReason Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

EncounterMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
encounterTypeId String No
patientId String No
locationId String No
formId String No
providerId String No
startDatetime DateTime No
endDatetime DateTime No
voided Boolean No
voidedBy String No
dateVoided DateTime No
voidReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterTypeCountOutputType

Name Type Nullable
encounterList Int Yes

EncounterTypeCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

EncounterTypeMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

EncounterTypeMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
encounterId Int Yes
obsDatetime Int Yes
valueDatetime Int Yes
valueNumeric Int Yes
valueText Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ObsAvgAggregateOutputType

Name Type Nullable
valueNumeric Float No

ObsSumAggregateOutputType

Name Type Nullable
valueNumeric Float No

ObsMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ObsMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
obsDatetime DateTime No
valueDatetime DateTime No
valueNumeric Float No
valueText String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
encounterId Int Yes
orderDatetime Int Yes
instructions Int Yes
dosage Int Yes
route Int Yes
frequency Int Yes
asNeeded Int Yes
prn Int Yes
quantity Int Yes
units Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
orderFrequencyId Int Yes
orderRouteId Int Yes
orderTypeId Int Yes
orderUnitId Int Yes
_all Int Yes

OrderAvgAggregateOutputType

Name Type Nullable
quantity Float No

OrderSumAggregateOutputType

Name Type Nullable
quantity Int No

OrderMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String No
orderRouteId String No
orderTypeId String No
orderUnitId String No

OrderMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
encounterId String No
orderDatetime DateTime No
instructions String No
dosage String No
route String No
frequency String No
asNeeded Boolean No
prn Boolean No
quantity Int No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
orderFrequencyId String No
orderRouteId String No
orderTypeId String No
orderUnitId String No

OrderFrequencyCountOutputType

Name Type Nullable
orderList Int Yes

OrderFrequencyCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

OrderFrequencyMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderFrequencyMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderRouteCountOutputType

Name Type Nullable
orderList Int Yes

OrderRouteCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

OrderRouteMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderRouteMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderTypeCountOutputType

Name Type Nullable
orderList Int Yes

OrderTypeCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

OrderTypeMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderTypeMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderUnitCountOutputType

Name Type Nullable
orderList Int Yes

OrderUnitCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

OrderUnitMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

OrderUnitMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptCountOutputType

Name Type Nullable
answerList Int Yes
metaList Int Yes
conceptNameList Int Yes
conceptNumericList Int Yes
conceptProposalList Int Yes
conceptWordList Int Yes
fieldList Int Yes
obsList Int Yes
orderList Int Yes

ConceptCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
dataType Int Yes
class Int Yes
isRetired Int Yes
retiredBy Int Yes
dateRetired Int Yes
retiredReason Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
conceptClassId Int Yes
conceptDatatypeId Int Yes
conceptMapId Int Yes
conceptSetId Int Yes
conceptSourceId Int Yes
_all Int Yes

ConceptMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String No
conceptDatatypeId String No
conceptMapId String No
conceptSetId String No
conceptSourceId String No

ConceptMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
dataType String No
class String No
isRetired Boolean No
retiredBy String No
dateRetired DateTime No
retiredReason String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No
conceptClassId String No
conceptDatatypeId String No
conceptMapId String No
conceptSetId String No
conceptSourceId String No

ConceptAnswerCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
answerConceptId Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptAnswerMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
answerConceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptAnswerMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
answerConceptId String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptClassCountOutputType

Name Type Nullable
conceptList Int Yes

ConceptClassCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptClassMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptClassMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptDatatypeCountOutputType

Name Type Nullable
conceptList Int Yes

ConceptDatatypeCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptDatatypeMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptDatatypeMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptMapCountOutputType

Name Type Nullable
conceptList Int Yes

ConceptMapCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptMapMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptMapMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
name Int Yes
locale Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptNameMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNameMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
hiAbsolute Int Yes
hiCritical Int Yes
hiNormal Int Yes
lowAbsolute Int Yes
lowCritical Int Yes
lowNormal Int Yes
units Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptNumericAvgAggregateOutputType

Name Type Nullable
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No

ConceptNumericSumAggregateOutputType

Name Type Nullable
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No

ConceptNumericMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptNumericMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
hiAbsolute Float No
hiCritical Float No
hiNormal Float No
lowAbsolute Float No
lowCritical Float No
lowNormal Float No
units String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptProposalMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptProposalMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSetCountOutputType

Name Type Nullable
conceptList Int Yes

ConceptSetCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptSetMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSetMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSourceCountOutputType

Name Type Nullable
conceptList Int Yes

ConceptSourceCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptSourceMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptSourceMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
conceptId Int Yes
word Int Yes
locale Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ConceptWordMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ConceptWordMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
conceptId String No
word String No
locale String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ResourceCountOutputType

Name Type Nullable
formResourceList Int Yes

ResourceCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
name Int Yes
description Int Yes
creator Int Yes
dateCreated Int Yes
lastChangedBy Int Yes
lastChangedDate Int Yes
_all Int Yes

ResourceMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

ResourceMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
name String No
description String No
creator String No
dateCreated DateTime No
lastChangedBy String No
lastChangedDate DateTime No

BlogPostCountOutputType

Name Type Nullable
tagArrowList Int Yes

BlogPostCountAggregateOutputType

Name Type Nullable
id Int Yes
title Int Yes
content Int Yes
context Int Yes
authorId Int Yes
spaceTimeCoordinatesId Int Yes
_all Int Yes

BlogPostMinAggregateOutputType

Name Type Nullable
id String No
title String No
content String No
authorId String No
spaceTimeCoordinatesId String No

BlogPostMaxAggregateOutputType

Name Type Nullable
id String No
title String No
content String No
authorId String No
spaceTimeCoordinatesId String No

BlogPostTagCountOutputType

Name Type Nullable
postArrowList Int Yes

BlogPostTagCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
descriptor Int Yes
_all Int Yes

BlogPostTagMinAggregateOutputType

Name Type Nullable
id String No
name String No
descriptor String No

BlogPostTagMaxAggregateOutputType

Name Type Nullable
id String No
name String No
descriptor String No

BlogPostTagArrowCountAggregateOutputType

Name Type Nullable
id Int Yes
postId Int Yes
tagId Int Yes
_all Int Yes

BlogPostTagArrowMinAggregateOutputType

Name Type Nullable
id String No
postId String No
tagId String No

BlogPostTagArrowMaxAggregateOutputType

Name Type Nullable
id String No
postId String No
tagId String No

BlogPostAuthorCountOutputType

Name Type Nullable
blogPostList Int Yes

BlogPostAuthorCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
_all Int Yes

BlogPostAuthorMinAggregateOutputType

Name Type Nullable
id String No
name String No

BlogPostAuthorMaxAggregateOutputType

Name Type Nullable
id String No
name String No

SpaceTimeCoordinatesCountAggregateOutputType

Name Type Nullable
id Int Yes
latitude Int Yes
longitude Int Yes
startTime Int Yes
pauseTime Int Yes
stopTime Int Yes
timezone Int Yes
blogPostId Int Yes
_all Int Yes

SpaceTimeCoordinatesAvgAggregateOutputType

Name Type Nullable
latitude Float No
longitude Float No
startTime Float No
pauseTime Float No
stopTime Float No

SpaceTimeCoordinatesSumAggregateOutputType

Name Type Nullable
latitude Float No
longitude Float No
startTime Float No
pauseTime Float No
stopTime Float No

SpaceTimeCoordinatesMinAggregateOutputType

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float No
stopTime Float No
timezone String No
blogPostId String No

SpaceTimeCoordinatesMaxAggregateOutputType

Name Type Nullable
id String No
latitude Float No
longitude Float No
startTime Float No
pauseTime Float No
stopTime Float No
timezone String No
blogPostId String No

BudgetEntryCountAggregateOutputType

Name Type Nullable
id Int Yes
serviceId Int Yes
cost Int Yes
discount Int Yes
promotion Int Yes
subtotal Int Yes
percentChange Int Yes
createdAt Int Yes
updatedAt Int Yes
budgetId Int Yes
_all Int Yes

BudgetEntryAvgAggregateOutputType

Name Type Nullable
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No

BudgetEntrySumAggregateOutputType

Name Type Nullable
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No

BudgetEntryMinAggregateOutputType

Name Type Nullable
id String No
serviceId String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budgetId String No

BudgetEntryMaxAggregateOutputType

Name Type Nullable
id String No
serviceId String No
cost Float No
discount Float No
promotion Float No
subtotal Float No
percentChange Float No
createdAt DateTime No
updatedAt DateTime No
budgetId String No

BudgetServiceCountOutputType

Name Type Nullable
entryList Int Yes

BudgetServiceCountAggregateOutputType

Name Type Nullable
id Int Yes
description Int Yes
category Int Yes
metadata Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

BudgetServiceMinAggregateOutputType

Name Type Nullable
id String No
description String No
category String No
createdAt DateTime No
updatedAt DateTime No

BudgetServiceMaxAggregateOutputType

Name Type Nullable
id String No
description String No
category String No
createdAt DateTime No
updatedAt DateTime No

BudgetCountOutputType

Name Type Nullable
userList Int Yes
entryList Int Yes

BudgetCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
fiscalYear Int Yes
reportId Int Yes
_all Int Yes

BudgetAvgAggregateOutputType

Name Type Nullable
fiscalYear Float No

BudgetSumAggregateOutputType

Name Type Nullable
fiscalYear Int No

BudgetMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String No

BudgetMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fiscalYear Int No
reportId String No

ReportCountAggregateOutputType

Name Type Nullable
id Int Yes
budgetId Int Yes
totalCost Int Yes
totalDiscount Int Yes
totalPromotion Int Yes
totalSubtotal Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

ReportAvgAggregateOutputType

Name Type Nullable
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No

ReportSumAggregateOutputType

Name Type Nullable
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No

ReportMinAggregateOutputType

Name Type Nullable
id String No
budgetId String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No

ReportMaxAggregateOutputType

Name Type Nullable
id String No
budgetId String No
totalCost Float No
totalDiscount Float No
totalPromotion Float No
totalSubtotal Float No
createdAt DateTime No
updatedAt DateTime No

BudUserCountOutputType

Name Type Nullable
eventList Int Yes
budgetList Int Yes

BudUserCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
email Int Yes
password Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

BudUserMinAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No

BudUserMaxAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
password String No
createdAt DateTime No
updatedAt DateTime No

BudgetBudUserCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
budgetId Int Yes
role Int Yes
ability Int Yes
category Int Yes
_all Int Yes

BudgetBudUserMinAggregateOutputType

Name Type Nullable
id String No
userId String No
budgetId String No
role String No
ability String No
category String No

BudgetBudUserMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
budgetId String No
role String No
ability String No
category String No

BudEventCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
description Int Yes
categoryList Int Yes
metadata Int Yes
budUserId Int Yes
createdAt Int Yes
_all Int Yes

BudEventMinAggregateOutputType

Name Type Nullable
id String No
type String No
description String No
budUserId String No
createdAt DateTime No

BudEventMaxAggregateOutputType

Name Type Nullable
id String No
type String No
description String No
budUserId String No
createdAt DateTime No